Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can’t target sublist anchor Re: Can’t target sublist anchor

#137073
Paulie_D
Member

Change this

#nav li:hover a {
color: #333;
}

to this

#nav li:hover > a {
color: #333;
}

That should get you started.