Support [Help] User Banner issue not displaying

Shield

Registered
This is the gif i am trying to use it : i used these code.
.mybadge {
background-image: url('https://i.imgur.com/JLYifwG.gif');
background-repeat: no-repeat;
background-position: center top;
padding-top:42px;
text-align: center top;
}

Can anyone test it out ?
 
Solution
Test this code :
Code:
.mybadge {
    background-image: url('https://i.imgur.com/JLYifwG.gif');
    background-repeat: no-repeat;
    padding-top: 42px;
    background-size: 100%;
}
Back
Top Bottom