xF2 Template Modification ¿How can i center this in the postbit?

Almighty

Well-known member
Registered
Joined
Feb 5, 2020
Messages
60
Points
18

Reputation:

As the title says, how i can center this Gamer Profiles in the post bit, i don't like how it looks in the left. The addon is: https://enxf.cc/resources/ozzmodz-gamer-profiles.1000/
badgeleft.png


And where and how i can disable "Gamer cards" tab in the profile? what's the line in the template and which is the template to do that , Thanks...
gamercards.png
 

Attachments

  • centerthis.png
    centerthis.png
    1.8 KB · Views: 37

wallas

Collaborate
Collaborate
Registered
Joined
May 20, 2021
Messages
215
Points
153

Reputation:

Disable the gamerprofiles link from the profile page.

Add extra.less.

Less:
// gamerprofiles
a#ah_gamerprofiles {
    display: none;
}

To center the icons:

admin.php?styles/evolverp-dark.19/style-properties/group&group=ah_gamerprofiles

Message user info container --> add code
Less:
display: inline-block;
width: 100%;
text-align: center;

Thus:

container.png
 
Last edited:

Almighty

Well-known member
Registered
Joined
Feb 5, 2020
Messages
60
Points
18

Reputation:

Disable the gameprofiles link from the profile page.

Add extra.less.

Less:
// gamerprofiles
a#ah_gamerprofiles {
    display: none;
}

To center the icons:

admin.php?styles/evolverp-dark.19/style-properties/group&group=ah_gamerprofiles

Message user info container --> add code
Less:
display: inline-block;
width: 100%;
text-align: center;

Thus:

View attachment 40497
wallasThank you very much, you've helped me a lot!!!
 
Top