I have a navigation menu I want each link within it will be a different color when active.
I do something like this:
.side_bar_nav li.current-menu-item a{
color: #ff6633;
}
But this gives each link with the same color when active. But I want to target each link individually and give it its own color.
In below this is one of the link which I want to individual color when it active.
<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-9 current_page_item menu-item-49">
<a href="http://fyberproperty.co.uk/">home</a>
</li>
Can anybody help me how I set its individual color when it active?