How to Create Borders Around Awards Icons ? [help]

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
562
Points
53

Reputation:

i want to create borders around my awards...
1693376066316.png
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,531
Points
523

Reputation:

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
562
Points
53

Reputation:

Which addon you are using for the awards?

That what you want is not visible on that screenshot, right
BattleKingi am using Awards addon , i want to create border around icon that i want. like this ,
1693378737528.png
 
View previous replies…

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
839
Points
153

Reputation:

i am using Awards addon , i want to create border around icon that i want. like this , View attachment 36656
ShieldXIf you use addonflare awards, you can declare custom css when you create a new award.
Try this code:

CSS:
    padding: 3px;
    border: 2px solid #fdd15c;
    border-radius: 15%;
    background: #333;


Also as suggestion, try lowering the award height in Style Properties > Addonflare awards
Your awards appear big as hell.

 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,531
Points
523

Reputation:

i am using Awards addon , i want to create border around icon that i want. like this , View attachment 36656
ShieldXThis can be done for each award individually like this:

Before:
1693388381190.png


1693388394640.png


Do the change here in the Inline CSS:
1693388464058.png


After that it looks like this:
1693388487692.png


1693388495775.png



If you want to do it for all, you can set in extra.less

CSS:
.afAwardImg {
    border-radius: 5px;
    padding: 1px;
    border: 1px solid green;
}
 
Last edited:

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
562
Points
53

Reputation:

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
562
Points
53

Reputation:

Top