I want to change the color for each of the items of the top nav here on the active state:
For example, on the given page, and the category pages associated with this, I would like the header nav named "Thought Piece" to be purple when the user is on that page.
Currently I have:
builder-module-navigation li a,
.builder-module-navigation li.current_page_item li a,
.builder-module-navigation li.current-cat li a {
font-size: 12px;
padding: 0.2em .7em;
line-height: 1.5em;
color: #666;
font-family:Georgia, "Times New Roman", Times, serif;
text-decoration: none;
background: transparent;
text-transform:uppercase;
}
I thought this would do the trick, but it's not:
.builder-module-navigation li.current_page_item #menu-item-78 li a,
.builder-module-navigation li.current-cat #menu-item-78 li a {
color:#9900cc;
}
How do I target the specific classes correctly?