How Do You Make This Menu A Solid Color?

DRE

Well-known member
I noticed that this is transparent when hovering over my username. How do I make this a solid color or where can I control the transparency to make it more opaqe?

popup.webp
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code. The red numbers are the opacity. 1 is opaque. 0 is transparent:

Rich (BB code):
.Menu .primaryContent
{
	background-color: {xen:helper rgba, @primaryContent.background-color, 0.96};
}

.Menu .secondaryContent
{
	background-color: {xen:helper rgba, @secondaryContent.background-color, 0.96};
}

.Menu .sectionFooter
{
	background-color: {xen:helper rgba, @sectionFooter.background-color, 0.9};
}
 
Top Bottom