XF 2.1 Nav menu color change

Thunder7ga

Member
I am looking for how to do the following:

1. On the below you can see where it is "light blue" right under the red MEDIA tab - how would I change that color?

2. The highlighted "Add media" shows as a light blue background with blue text, how do I change both of those colors?

199868
 

Attachments

  • navmenu.webp
    navmenu.webp
    7.7 KB · Views: 0
Add this to extra.less

CSS:
// ########################### MENU ARROW & LINK ROW COLOR ########################
.menu-content {
    border-top: 3px solid red);
}

.menu-arrow {
    border-bottom-color: red;
}

.menu-linkRow.is-selected, .menu-linkRow:hover, .menu-linkRow:focus {
    background: red;
}

Change red as desired.
 
Last edited:
Back
Top Bottom