XF 1.4 Navigation Bar Colors?

NewGamePlus

Member
Hey all! I'm trying to sort out an issue with my forums, I've been able to get the colors set for nearly everything except for a few areas. I've put green squares around them in the image below, I'm trying to change the font color of inactive tabs, the color of the text at the top of an open tab and the border color of the window opened when you hover over a tab.
Colors.webp

I've tried searching around a lot before and the only thing I can seem to find is how to change the background color behind the text and not the text itself. Does anyone know which templates might have the options for these?
 
For the first one:

Code:
.navTabs .navTab.PopupClosed .navLink {
    color: #FFFFFF !important;
}

For the second one:

Code:
.navTabs .navTab.Popup.PopupContainerControl.PopupOpen .navLink {
    color: #000000 !important;
}
 
For the second one, yes, actually. Don't think so for the first one, though.
The navigation style properties are pretty janky in general, and one of the states doesn't have a way to directly edit it.

I haven't used the XenForo navigation style properties since I made my framework because it was more of a headache than anything else.
 
Top Bottom