Eileen Starbuck 0 Report post Posted June 22, 2012 I've got a magazine view on my blog page. [2 full-size posts / 2 half-size posts] I've got the following custom CSS to handle the hover color/decoration. .fpost .post-title h2 a:hover { color: #693; } .fpost .post-title h4 a:hover { color: #693; } ...but I can't get the (h4) for the half-size posts to work. Ideas? "...learning, growing and sharing online!" http://www.everythingeileen.com Share this post Link to post Share on other sites
catrina 103 Report post Posted June 22, 2012 Do you have any other custom code for the h4 selector? (It may be overwriting the CSS you're trying to add) Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
beardedavenger 158 Report post Posted June 22, 2012 Try something like this, which will replace what you have above as well: [code]h2.entry-title a:hover, h3.entry-title a:hover, h4.entry-title a:hover, h5.entry-title a:hover {color:#693;}[/code] Something big is coming for DMS + photographers. http://fotostheme.com Nick Haskins & CO - New home for all of my PageLines Store products! http://nickhaskins.co Better DMS - News, Tutorials, and Tips http://betterdms.com Share this post Link to post Share on other sites
Eileen Starbuck 0 Report post Posted June 22, 2012 ...worked. thanks. "...learning, growing and sharing online!" http://www.everythingeileen.com Share this post Link to post Share on other sites