XF 1.4 members user info block

Brad P

Well-known member
evening chaps,

How do i remove the black background on the badges? so it only shows the badge.
 

Attachments

  • Screenshot (27).webp
    Screenshot (27).webp
    98.1 KB · Views: 29
You haven't actually defined the colour - the CSS is invalid.
Code:
.avatar img,
.avatar .img,
.avatarCropper
{
    background-color: transparent;
}
 
Do

Border: 0px !important;

In that same code.

This will also remove it from avatars however, unless there us a custom line for the badges you can check.
 
Top Bottom