XF 2.2 How to edit pop-up profile infomation?

Dkf

Active member
I want to change this bright blue background color.

1663515961056.png

I added this code in extra.less

.memberProfileBanner, .memberTooltip-header {
background: red;
}

Didn't work :(

Please help me. Thank You!
 
A couple of ways to achieve it.

Less:
.memberTooltip .memberTooltip-header
{
    background: red;
}

Less:
.memberTooltip-header
{
    background: red !important;
}
 
Top Bottom