
You can see in the photo above the “RED” Highlight block on the left. How can I change this color?

You can see in the photo above the “RED” Highlight block on the left. How can I change this color?
Hello @chmm9002,
Thanks for asking. 
Please try add following CSS under X > Theme Options > CSS:
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a {
box-shadow: inset 0 4px 0 0 #ff2a13;
}
Thanks.
hmmm…looks like it is doing what we want…but it looks like this 
Not like the original>? it highlights underneath not to the left like it did?
Hi there,
Please try this instead:
.x-navbar .desktop .x-nav > li > a:hover,
.x-navbar .desktop .x-nav > .x-active > a,
.x-navbar .desktop .x-nav > .current-menu-item > a {
box-shadow: inset 8px 0 0 0 #ba3643;
}
And kindly replace #ba3643 to the color that you want.
You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.