This item is by an Elite Author
FinalDestiny
- Elite Author
- Romania
- Sold between 100 000 and 250 000 dollars
- Has been a member for 2-3 years
- Referred between 10 and 49 users
- Most Wanted Bounty Winner
- Exclusive Author
- Bought between 10 and 49 items
47
Purchases
Buyer Rating:
4.43 stars
4.43 average based on 7 ratings.
-
5 Star
685%
-
4 Star
00%
-
3 Star
00%
-
2 Star
00%
-
1 Star
114%
| Created | 11 January 13 |
| Last Update | 11 January 13 |
| Columns | 2 |
| Compatible Browsers | IE8, IE9, Firefox, Safari, Opera, Chrome |
| Compatible With | Bootstrap 2.2.1 |
| Documentation | Well Documented |
| High Resolution | No |
| Layout | Responsive |
| ThemeForest Files Included | HTML Files, CSS Files, JS Files, PHP Files |
© All Rights Reserved FinalDestiny -
Contact Envato Support


Nice work!
Good Luck
Thanks moutheme!
Nice themes, I really like the Event list style. GLWS

Thank you very much!
Great, fantastic work !
Thank you Bedros
Great work
Good luck with sales.
Thanks
I really like your template. Forgive me for my ignorance – but can I use your template on wordpress?
If you convert it to WP, yes, but by default no, this is a HTML template
Cool man, GLWS
thanks mate!
- Elite Author
- Sold between 250 000 and 1 000 000 dollars
- Won a Competition
- Author was Featured
- Item was Featured
- Most Wanted Bounty Winner
- Bought between 100 and 499 items
- Referred between 200 and 499 users
- Romania
- Has been a member for 4-5 years
- Author had a Free File of the Month
- Exclusive Author
+3 moreGreat job Cristi, good luck with sales!!
Thanks
I really like the template and I’m about to buy it. Just one question: I know my way around with HTML/CSS, but I haven’t worked with sliders. Is there a tutorial/documentation on customizing the slider?
Thanks!
The slider is using Flexslider, they have docs on their official site http://www.woothemes.com/flexslider/
Do photoshop files come with this?
No.
Hi, I am about to buy your theme, I like it. I want to use it on wordpress to build a site for my cleaning business. I am not tech savvy but can get by, i’ve worked on my own wordpress site before, nothing special but I am worried that if I buy this theme I may find it is more harder to work with than I thought. So my question is how hard is it to convert this theme into wordpress, and how hard is it to customize it? I am pretty new to all this so I appreciate your help. Thanks… any videos around?
It’s as hard as converting any other html template to WP, it’s the same process. I’ll make a WP version myself too and sell it on themeforest, but it’ll be in march-april.
Hello!
I was hoping you could fill me in on how much it would cost to develop this template and if you could recommend a developer for me? Also, how much will it cost if we were to buy the rights of this template? Please advise!
You can drop me an email at post@editlounge.com
Thanks!
Cheers, Fera
I don’t sell the rights for it, neither do custom development work, you can try looking for a developer on the themeforest forums to develop this html template into a CMS
This theme looks great! Quick question: does the theme come with a login form example? It looks pretty doable as-is, but I am more into development than design.
It doesn’t come with any login form by default, it needs to be coded.
Hi I have bought the template and working my way through it.
I’m not an expert in HTML and would really like to be able to display multiple images when clicking on one of the images in the Portfolio page.
Can this be done?
Thanks
By default that’s not possible, sorry, it requires quite some customization in order to achieve that
Thank you, I have redesigned my site as I do not want to use flash in the template.
Another question. When previewing it on my computer the portfolio page doesn’t seem to work in IE, it’s fine in chrome and firefox. Any ideas?
Many thanks
Can you please elaborate? What exactly doesn’t work in IE? I’m on OS X, I’ll be able to check on IE tomorrow probably, on some other computer.
I bought this template but am quite frustrated. The contact form does not appear that customizable. Is there any documentation or is it a plugin?
I edited the process.php file to include all of the appropriate fields, linked them to the names in the contact file and also edited the custom.js. Perhaps I am missing somewhere but it does not want to allow additional fields to send data (null set reply).
Hello. Since this template uses AJAX to send the data, it validates the data in js/custom.js and then sends it to process.php via AJAX from there.
The code is
jQuery('#send_message').click(function(e){ e.preventDefault(); var error = false; var $this = jQuery(this); var name = $this.parent().find('#name').val(); var email = $this.parent().find('#email').val(); var message = $this.parent().find('#message').val(); if(name.length == 0){ error = true; jQuery('#name').css('border','1px solid red'); } else { jQuery('#name').css('border','1px solid #CCCCCC'); } if(email.length == 0 || email.indexOf('@') == '-1'){ error = true; jQuery('#email').css('border','1px solid red'); } else { jQuery('#email').css('border','1px solid #CCCCCC'); } if(message.length == 0){ error = true; jQuery('#message').css('border','1px solid red'); } else { jQuery('#message').css('border','1px solid #CCCCCC'); } if(error == true) { jQuery('#contact-success').hide(); jQuery('#contact-error').hide(); } if(error == false){ jQuery('#send_message').attr({'disabled' : 'true'}); jQuery.post("process.php", { bbsubmit: "1", bbname: name, bbemail: email, bbmessage: message }, function(result){ if(result == 'sent') { jQuery('.contact-success').fadeIn(500); jQuery('.contact-error').hide(); } else { jQuery('.contact-error').fadeIn(500); jQuery('.send_message').removeAttr('disabled'); } }); } });you’ll need to edit the code there and fetch any other fields you added to the html code. The line that sends the data is
jQuery.post("process.php", { bbsubmit: "1", bbname: name, bbemail: email, bbmessage: message }, function(result){Other than bbsubmit, bbname, bbemail and bbmessage you’ll need to send any other field you may have. After that, you’ll need to edit process.php to get the new fields as well and include them in the e-mail.
It is easy to customize once you know how it works, but you’ll need to have jQuery & PHP knowledge in order to work with it, since it’s a static template and not a WordPress theme that does all its job automatically.
Quick question for you, is it possible to have the html files centered, right now it takes up the whole screen I am guessing because it is a responsive template except it look a little stretched on a 23 inch screen.
Unfortunately not, you’re right, it’s because it’s fully responsive.. :/