Xenforo 2.1 Username styling.

liandy

Member
Registered
Joined
Jan 3, 2020
Messages
18
Points
23

Reputation:

Hello, i want how to obtain this username style: Mad Skillz

Can somebody help me?

I only know that its made with Google Span coding.
 

DarkMaster

Collaborate
Collaborate
Registered
Joined
Feb 14, 2020
Messages
35
Points
28

Reputation:

also if you require the icon aswell
in extra.less template enter

/* Admin Group settings Font Awesome */
.username--style3:before {
font-family: "Font Awesome 5 Pro";
content: "\f521";
color: inherit;
padding-right: 4px;
display: inline-block;
}


change style3 with your style
 

liandy

Member
Registered
Joined
Jan 3, 2020
Messages
18
Points
23

Reputation:

Thanks a lot.


And how can i add the same style to the usergroup banner?
 

DarkMaster

Collaborate
Collaborate
Registered
Joined
Feb 14, 2020
Messages
35
Points
28

Reputation:

you could try this

Go to: AdminCP> Appearance> Templates> and find the file "extra.less" Open the file and add this code ( call it whatever you want.) In the example here, I called it ".mybadge")

.mybadge
{
background-image: url (' https://i.pinimg.com/originals/e5/89/95/e5899572ecace2b0895b36db7703a001.gif ');
background-repeat: no-repeat;
background-position: center top;
padding-top: 42px;
text-align: center top;
}
 

liandy

Member
Registered
Joined
Jan 3, 2020
Messages
18
Points
23

Reputation:

Thanks, i will try it, when have the results I will told you.
 

liandy

Member
Registered
Joined
Jan 3, 2020
Messages
18
Points
23

Reputation:

How to call it in the usergroup ccs bradge??

Pd: im new using xenforo.
 

DarkMaster

Collaborate
Collaborate
Registered
Joined
Feb 14, 2020
Messages
35
Points
28

Reputation:

in groups, user banner styling
check other and input .mybadge or whatever you called it
 
Top