XF 1.5 Setting up custom user banners

Exemption

Active member
Ok so I want to have my banners like
pa7IzjQ.png


So I inspected element and got the colors and put
Code:
.userBanner.Moderator
{
color: #006600;
background-color: #00CC33;
border-color: #006600;
}
in the extra folder but I got
ME7iIhN.png

and I want the background color to be on the ends like the top one :)
 
That should be all you need. It's how we set banners up on KH-Flare 2014 and they appear like that.

You may have other CSS conflicting with your CSS.
 
Hi,

Remove everything you did before you apply what I wrote below.

Here:

Screenshot_1.webp

Put this: userBanner bannerCustom and change Custom with what you want.

Now, go to EXTRA.css and add this:
Code:
.userBanner.bannerCustom
{
    color: #000000;
    background-color: #000000;
    border-color: #000000;
}

.userBanner.bannerCustom.wrapped span
{
    background-color: #000000;
}

Change Custom with what you've put on the image above and #000000 with the color of your choice.

This:
Code:
.userBanner.bannerCustom.wrapped span

applies to that:

Screenshot_2.webp
 
Hi,

Remove everything you did before you apply what I wrote below.

Here:

View attachment 111041

Put this: userBanner bannerCustom and change Custom with what you want.

Now, go to EXTRA.css and add this:
Code:
.userBanner.bannerCustom
{
    color: #000000;
    background-color: #000000;
    border-color: #000000;
}

.userBanner.bannerCustom.wrapped span
{
    background-color: #000000;
}

Change Custom with what you've put on the image above and #000000 with the color of your choice.

This:
Code:
.userBanner.bannerCustom.wrapped span

applies to that:

View attachment 111042
Amazing it worked! Thanks so much :)
 
Top Bottom