XF 1.5 Can't change navigation menu font color

T Money

Active member
Hello XF:

I am trying to change the font color of the navigation bar menu:

upload_2015-9-17_10-9-54.webp


As you can see I already changed it on the SP/Navigation Tabs Container:

upload_2015-9-17_10-10-56.webp

For some reason the default blue won't change. Any advise would be appreciated. Thanks
 
You CSS is malformed.

Either use this:
Code:
.navTabs .navTab.PopupClosed .navLink {
color: #971e1e;
}


or this:
Code:
.navTabs .navTab.PopupClosed .navLink {
color: @primaryDark;
}
 
Thank you.

New problem: the background color on the navigation tabs bar is not continuous for the entire row, how to fix this?
upload_2015-9-17_10-34-1.webp




And how can I get rid of the orange line in between the top and bottom nav bars? And how to edit or remove the bottom nav bar menu?
upload_2015-9-17_10-34-51.webp

And how to edit or remove the bottom nav bar menu? For example get rid of "New Posts" menu.
 

Attachments

  • upload_2015-9-17_10-30-26.webp
    upload_2015-9-17_10-30-26.webp
    7.4 KB · Views: 1
  • upload_2015-9-17_10-32-37.webp
    upload_2015-9-17_10-32-37.webp
    7.4 KB · Views: 1
Top Bottom