For my primary and secondary navigation I am NOT using Wayfinder. Really no point in this case. So I’m using CSS image replacement for my nav buttons. All works well except for not being able to show the "Active" state. Anyone find a solution for this? Hover works fine. It’ as if it is not reading the current DOM as the current active page.
here is a snippet of my code:
#topsubnav-about a.staff{background:url(../images/bkg-subnav-about.png) -200px 0;width:100px;}
#topsubnav-about a.staff:hover{background:url(../images/bkg-subnav-about.png) -200px -38px;}
#topsubnav-about a.staff:active{background:url(../images/bkg-subnav-about.png) -200px -76px;cursor:default;}
Any ideas? I am having this same issue with several different sites with clients complaining. Would be nice to have a fix. Thanks in advance.
Thanks Sharkbait. I’ll check out the link.