XF 1.4 Remove opacity from membercard and editor

dehness

Well-known member
Hi,

Firstly, I'd like to remove the opacity from the Member Card.

I tried,

.memberCard {
opacity: 1;
}

However, it had no effect.

Also, I would like the remove the opacity from the Editor drop-down boxes, as it's difficult to choose font, etc., when you have text underneath.

Such as,

Screen Shot 2014-11-21 at 7.53.22 pm.webp

Thanks guys!
 
Found solution.

For anyone else that has the same issues, the opacity is in Style Properties > Membercard > Click on the background color > set A to 1.

For the transparent editor menus, add this to EXTRA.css:

.redactor_dropdown{ background: @primaryLightest }
 
Top Bottom