I want to style my posts listed on the index page. If i style class="post" they change both on index- and single page. I can't find a way to make my own class for posts on index page only. Please help!
I want to style my posts listed on the index page. If i style class="post" they change both on index- and single page. I can't find a way to make my own class for posts on index page only. Please help!
if your theme uses body_class() you can use the extra css classes to make the style more specific;
example:
.home .post { }
or
.single .post { }
http://codex.wordpress.org/Function_Reference/body_class
edit:
or add an extra css class to the post div in single.php
Thank you alchymyth!!!
You must log in to post.