
&hereClass=`current`
#nav ul li.active {
background: url(nav-current.jpg) no-repeat center bottom;
}
#nav ul li.active a {
color: #333;
}
Hi Brian,
Wayfinder uses ’active’ for current page.
All you need to do is add a ’active’.
you have:
#nav ul li a:active {color: #333; }
#nav ul li#current ( background: url(nav-current.jpg) no-repeat center bottom}
change it to:
#nav ul li.active a {color: #333; background: url(nav-current.jpg) no-repeat center bottom}
and remove the #nav ul li#current in your css and associated tag in the html markup.