XF 2.0 Highlighted menu text color

sbj

Well-known member
I can't find the style property settings for the color of the highlighted text in the menu.
Neither couldn't find the right css selectors.
If you look closely, the highlighted text "Your content" has a different color, I want to be able to change that.

Can anybody help, please?
Thanks.
 

Attachments

  • sdfdsf.webp
    sdfdsf.webp
    17.9 KB · Views: 26
Last edited:
Code:
.menu-linkRow.is-selected,
.menu-linkRow:hover,
.menu-linkRow:focus{
background: orange !important;
border-left-color:red !important;
}
Change orange for the background color and red for the left border color.
 
  • Like
Reactions: sbj
Top Bottom