ThemeForest

CONTRAST

  • Bought between 100 and 499 items
  • Has been a member for 3-4 years
  • Sweden
blyerts Purchased

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

Themolution

No problem, as i said; my fail :) About the logo its seems okey when i check; which browser are u using?

  • Bought between 100 and 499 items
  • Has been a member for 3-4 years
  • Sweden
blyerts Purchased

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

Themolution

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?

  • Bought between 50 and 99 items
  • Has been a member for 5-6 years

You did it again!! congrats mate:)

Themolution

:) thank you so much mate, your comment is important for me i like your style u know.

  • Elite Author
  • Sold between 250 000 and 1 000 000 dollars
  • Exclusive Author
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • Referred between 200 and 499 users

Really good one, congrats..

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years
  • United States

One of the most creative themes I’ve seen on Envato. Kick ass.

  • 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
+1 more

I love to repeat it, thank you so much guys :)

  • Bought between 10 and 49 items
  • Canada
  • Has been a member for 4-5 years

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?

Themolution

:) Thank you so much mate.

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 :)

  • Bought between 1 and 9 items
  • Has been a member for 5-6 years
  • Singapore

Nice theme. Is it fully support in PC IE6 ? I am using Mac I can tell.

Themolution

Yes its fully support.

  • Bought between 1 and 9 items
  • Has been a member for 5-6 years
  • Singapore

Can the home page flash bg can randomize rotate? and add another new .swf bg from wordpress?

Themolution

No threre is no randomize option, but easy to do. I can help you to modify.

jackwong

Thanks. May I know is allow multiple FLV to randomise on homepage? And can this manage on WP admin?

Themolution

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.

jackwong
jackwong Purchased

Akay, are you helping me to make the homepage random bg? how u pass me the code I insert myself?

  • Bought between 1 and 9 items
  • Has been a member for 5-6 years
  • Singapore

Can I create subpage under Services? May I know how does it look for Navi?

  • 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
+1 more

I didn’t add subpage option for pages, but if i (for update); it will look like the same with sub categories look. Thanks.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
ruijt Purchased

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

Themolution

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.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
ruijt Purchased

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

Themolution

Yes it should be the soution :) Thanks

  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 4-5 years
  • Sold between 5 000 and 10 000 dollars

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 :(

Themolution

Thank you peex, and sorry about the name :)

  • Bought between 1 and 9 items
  • Has been a member for 5-6 years
  • Singapore

Thank Akay. Can you also help me / teach me to add option subpages?

Themolution

Its okey, im going to add this function @ 2.update

jackwong

thanks let me know when is done.

  • Bought between 1 and 9 items
  • Canada
  • Has been a member for 3-4 years

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!

  • Bought between 10 and 49 items
  • Canada
  • Has been a member for 4-5 years

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.

Themolution

Okey mate, i noted it will do it in next update. Thanks :)

  • Bought between 10 and 49 items
  • Canada
  • Has been a member for 4-5 years

Maybe not, seems to break a lot of things…. mm

  • Sweden
  • Grew a moustache for the Envato Movember competition
  • Author had a Free File of the Month
  • Sold between 1 000 and 5 000 dollars
  • Bought between 1 and 9 items
  • Has been a member for 3-4 years
  • Referred between 1 and 9 users
  • Exclusive Author

wow realy creative :D

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
ruijt Purchased

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

Themolution

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 :)

by
by
by
by
by