Hi,
I’m trying to change the color of the top menu active link to orange, but the code in quick css doesn’t seem to work. This is the code I’m using:
.header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a
{ color: #f39200 !important; }
Why isn’t it working?
Hey Lisbeth!
Please try the following instead and see if you have any luck with it:
.current_page_item a span {
color: orange !important;
}
Cheers!
Rikard
Thanksallot! That did the trick :)