This item is by an Elite Author
Themolution
- Author was Featured
- Beta Tester
- Bought between 100 and 499 items
- Elite Author
- Europe
- Exclusive Author
- Has been a member for 4-5 years
- Referred between 100 and 199 users
- Sold between 100 000 and 250 000 dollars
- Won a Competition
3,477
Purchases
Buyer Rating:
3.97 stars
3.97 average based on 396 ratings.
-
5 Star
20752%
-
4 Star
7719%
-
3 Star
4511%
-
2 Star
287%
-
1 Star
399%
| Created | 3 November 09 |
| Last Update | 29 April 12 |
| Columns | 4+ |
| Compatible Browsers | IE6, IE7, IE8, IE9, IE10, Firefox, Safari, Opera, Chrome |
| Software Version | WordPress 3.5, WordPress 3.4, WordPress 3.3, WordPress 3.2, WordPress 3.1, WordPress 3.0 |
| Documentation | Well Documented |
| High Resolution | No |
| Layout | Liquid |
| ThemeForest Files Included | Layered PSD, CSS Files, JS Files, PHP Files |
| Widget Ready | Yes |
- background
- clean
- corporate
- creative
- designer
- full screen
- fullscreen
- ipad
- minimal
- minimalist
- photographer
- photography
- portfolio
- shortcodes
© All Rights Reserved Themolution -
Contact Envato Support


Thanks!
Works like a charm!
Now I just need to fix the logo then everything is perfect. I try a little bit on my own.!
Best regards / ola
No problem, as i said; my fail
About the logo its seems okey when i check; which browser are u using?
I got the template installed on two places during the installation just to check between them. I can se the logo on the test site but not on the main one. The link functionalitet works in the logo area…
Same browser, Safari for the moment… Can´t see logo. Deleted the cache in Safari but still it does not work on main site.
Logo works fine in Firefox.
Could it be something about z-value? (not my area of knowledge
/ ola
If it seems true in one space and wrong in another, there should be something wrong with uploading i think
Could you please check did you upload all?
You did it again!! congrats mate:)
Really good one, congrats..
One of the most creative themes I’ve seen on Envato. Kick ass.
- Author was Featured
- Beta Tester
- Bought between 100 and 499 items
- Elite Author
- Europe
- Exclusive Author
- Has been a member for 4-5 years
- Referred between 100 and 199 users
- Sold between 100 000 and 250 000 dollars
- Won a Competition
+1 moreI love to repeat it, thank you so much guys
Great Great Great!
I love it and love it! Great job! Clear instructions, well written PHP , super CSS
DUDE YOU ROCK
PS: Lightbox, is there some way to disable it and use the plugin “Lightbox 2” that way things like slidepress and slideshow pro director will work better with the theme?
About the lightbox, you can disable it by removing the lines in header.php about lightbox, also in 001.css file, and also delete the js file. Then you can add your own plugin, thats all. Thanks one more time u rock too
Nice theme. Is it fully support in PC IE6 ? I am using Mac I can tell.
Yes its fully support.
Can the home page flash bg can randomize rotate? and add another new .swf bg from wordpress?
No threre is no randomize option, but easy to do. I can help you to modify.
Thanks. May I know is allow multiple FLV to randomise on homepage? And can this manage on WP admin?
It will take to much time to modify with wp-admin supported, but we can easly modify the home.php file as you need. Tell me if you want it.
Akay, are you helping me to make the homepage random bg? how u pass me the code I insert myself?
Can I create subpage under Services? May I know how does it look for Navi?
- Author was Featured
- Beta Tester
- Bought between 100 and 499 items
- Elite Author
- Europe
- Exclusive Author
- Has been a member for 4-5 years
- Referred between 100 and 199 users
- Sold between 100 000 and 250 000 dollars
- Won a Competition
+1 moreI didn’t add subpage option for pages, but if i (for update); it will look like the same with sub categories look. Thanks.
Hi Akay,
Thanks for the great work, I love it.
I bought it today and I’m working on it.
Is there also a way to give Blog and Portfolio a different background, like the other pages? Or do you need to give each individual post a background value?
Thanks!
Regards, Bas
Hi mate, thanks for your nice comment also for purchasing. Sorry but you can assing a background to posts, pages, and homepage. Not for categories. Thanks one more time.
Ok, no problem…
Found a solution, for me, maybe others wanna use it too, or you want to add it to your theme.
tmp_background.php added:if (is_home()) { $BG_type = get_option('home_BG_type'); $BG_value = get_option('home_BG_value'); } else if (is_category()) { $BG_type = get_option('category_BG_type'); $BG_value = get_option('category_BG_value'); } else if (is_single()) { $BG_type = get_option('single_BG_type'); $BG_value = get_option('single_BG_value'); } else { $BG_type = get_post_meta($post->ID, 'BG_type', $single = true); $BG_value = get_post_meta($post->ID, 'BG_value', $single = true); }and this to the functions.php:
add_option('category_BG_type', ''); add_option('category_BG_value', ''); add_option('single_BG_type', ''); add_option('single_BG_value', ''); <p><b>Select The Category Background Type</b></p> <p> <select name="category_BG_type"> <option value="0">None</option> <option value="color"<?php if (get_option('category_BG_type') == 'color' ) { ?> selected="selected"<?php } ?>>Color</option> <option value="img"<?php if (get_option('category_BG_type') == 'img' ) { ?> selected="selected"<?php } ?>>Image</option> <option value="flv"<?php if (get_option('category_BG_type') == 'flv' ) { ?> selected="selected"<?php } ?>>Video (flv)</option> <option value="map"<?php if (get_option('category_BG_type') == 'map' ) { ?> selected="selected"<?php } ?>>Google Maps</option> </select> </p> <p><b>Enter The Category Background Value</b></p> <p><input type="text" name="category_BG_value" id="category_BG_value" size="20" value="<?php echo get_option('category_BG_value'); ?>" /></p> <p><b>Select The Single Background Type</b></p> <p> <select name="single_BG_type"> <option value="0">None</option> <option value="color"<?php if (get_option('single_BG_type') == 'color' ) { ?> selected="selected"<?php } ?>>Color</option> <option value="img"<?php if (get_option('single_BG_type') == 'img' ) { ?> selected="selected"<?php } ?>>Image</option> <option value="flv"<?php if (get_option('single_BG_type') == 'flv' ) { ?> selected="selected"<?php } ?>>Video (flv)</option> <option value="map"<?php if (get_option('single_BG_type') == 'map' ) { ?> selected="selected"<?php } ?>>Google Maps</option> </select> </p> <p><b>Enter The Single Background Value</b></p> <p><input type="text" name="single_BG_value" id="single_BG_value" size="20" value="<?php echo get_option('single_BG_value'); ?>" /></p>Regards, Bas
Yes it should be the soution
Thanks
The most unique template i have aver seen here. And your theme’s name is Contrast
. I almost finished my wordpress theme and i was thinking to give that name until today 
Thank you peex, and sorry about the name
Thank Akay. Can you also help me / teach me to add option subpages?
Its okey, im going to add this function @ 2.update
thanks let me know when is done.
Hey man, Just grabbed the template. Super rad! How can I use the template’s comment form as a contact form on my “Contact” page? This would make a sweet page even better. Cheers!
in the next revision you might want to add the
<?php wp_head(); ?>
To your header.php file. Just so plugins that some people load won’t work properly if they can’t load the included scripts.
Okey mate, i noted it will do it in next update. Thanks
Maybe not, seems to break a lot of things…. mm
wow realy creative
Hey Akay,
I’m having trouble with IE8 … sometimes background images show up, but most of the time not. IE8 has this compatibility mode, in which it runs every time I open a page. Did you notice these kind of problems? Firefox and Safari work fine…
Regards, Bas
Hi ruijit, thanks for purchasing first. Yes i know about it, im going to solve it in next update, in 3 days. Thanks for your understanding