XF 1.2 Usergroup Title on Profile Page

Add in extra.css:

Code:
.profilePage .mainProfileColumn .secondaryContent .userBanner{
    display: none;
}
It didn't remove it, I have another code in there.
Here is what I have exactly in there;
Code:
.xenOverlay #pageLogin
{
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 20px;
    border: 20px solid rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
{
    .profilePage .mainProfileColumn .secondaryContent .userBanner{
    display: none;
}

And thank you for the support.
 
Code:
.xenOverlay #pageLogin
{
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 20px;
    border: 20px solid rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

{   <-----------------------------   REMOVE THAT

    .profilePage .mainProfileColumn .secondaryContent .userBanner{
    display: none;
}


You need to remove something.
 
Code:
.xenOverlay #pageLogin
{
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 20px;
    border: 20px solid rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

{   <-----------------------------   REMOVE THAT

    .profilePage .mainProfileColumn .secondaryContent .userBanner{
    display: none;
}


You need to remove something.
I removed it, and it's still not removing it.
Hmm, would I have to remove the #pageLogin Overlay?
 
If you PM a link to the userpage, I can give you the code a bit better. That is just going off a default install (which should have worked).

You can try applying !important

Code:
.profilePage .mainProfileColumn .secondaryContent .userBanner{
    display: none !important;
}
 
If you PM a link to the userpage, I can give you the code a bit better. That is just going off a default install (which should have worked).

You can try applying !important

Code:
.profilePage .mainProfileColumn .secondaryContent .userBanner{
    display: none !important;
}
That did it, the !important
Thanks for the support.
 
Top Bottom