danielfinn 1 Report post Posted July 20, 2012 I am wanting to modify some aspects of the feature navigation when it is set to number mode. I have used the following code so far, however, I am struggling to find the correct anchors to change the color of the currently active feature slide. At the moment it is the pagelines default grey on my site. /* alter padding of nav box */ #feature-footer .feature-footer-pad { background-color: transparent; padding-bottom: 0px; } /* alter text colour of nav numbers */ #feature-footer.numbers a { color: #252727; } /* change background and text color of nav on hover */ #feature-footer.numbers a:hover { background-color: #f88bf2; color: #ffffff; font-weight:bold; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } I tried the following code to change the active feature slide, but it did not work #feature-footer.numbers a:activeslide and #feature-footer.numbers a.activeslide Share this post Link to post Share on other sites
catrina 103 Report post Posted July 20, 2012 Please try this one: [code]div#featurenav a.activeSlide[/code] 1 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