XF 1.1 Property?

Gabby

Well-known member
What property changes the dropdown background? Or is it CSS? I can't remember nor find the prop.

See attached. Need to change the ugly yellowish to white.

:)

subcolorbg.webp
 
I don't think there is a property for that...you can add this and change it to suit in your EXTRA.css

#navigation .navTabs .navTab .tabLinks {
background-color: ;
}
 
you may have to put an !important at the end of background-color

#navigation .navTabs .navTab .tabLinks {
background-color: #000000 !important;
}
 
Top Bottom