XF 1.5 Nav Menu Dropdown Background

RDR

Well-known member
Is there a style property for setting the background color / opacity for dropdown menus in the navbar?

It seems the default has an opacity of 0.96 which I would like to remove/change.

Cheers,

Regs.
 
Are there style properties to control these:

.primaryContent{background-color:rgba(252, 252, 255, 0.96)}.Menu
.secondaryContent{background-color:rgba(240, 247, 252, 0.96)}.Menu
 
The dropdown menus are controlled with these pieces of CSS. That's where the 0.96 comes from:

Code:
.Menu .primaryContent

.Menu .secondaryContent

.Menu .sectionFooter
 
Top Bottom