XF 1.3 Add my own UserBanners

Mr.Panos

Member
I have created some UserBanners and I want to add them in my XenForo website. How can I do that?

Thanks in advance! :D
 
Take a look at the following image.
Something like this, but I want to add some custom ribbons. :)
Pretty sure if you read in that add-on discussion area it will tell you how to replace the built in ones with custom ones.
You can also do the same thing with the built in user banners (replace with an image for each group).
Just search on user|banner (notice the pipe between the words) and you will find a wealth of info.

http://xenforo.com/community/threads/creating-custom-user-group-banner-css.53193/
http://xenforo.com/community/threads/help-centering-user-banner-image.72487/
http://xenforo.com/community/resources/user-ranks-with-images.2054/
 
Last edited:
Pretty sure if you read in that add-on discussion area it will tell you how to replace the built in ones with custom ones.
You can also do the same thing with the built in user banners (replace with an image for each group).
Just search on user|banner (notice the pipe between the words) and you will find a wealth of info.

http://xenforo.com/community/threads/creating-custom-user-group-banner-css.53193/
http://xenforo.com/community/threads/help-centering-user-banner-image.72487/
http://xenforo.com/community/resources/user-ranks-with-images.2054/

I followed the tutorials, but nothing happened. :(
 
Firstly, I added the word admin in the field: Other using CSS class name. Then, I added in EXTRA.css the following code:
Code:
.admin {
background: url("imglink") no-repeat;
height: 38px;
width: 105px;
text-indent: -10000em;
display: block;
}
 
Top Bottom