XF 1.4 Members Online Now Spacing

Craig

Active member
Good afternoon to all.

I am having an issue with the spacing in the Members Online Now section.
The awards each member can earn is being cutoff on the bottom.
How can I increase the space?

Snip20150708_1.webp
Thank you in advance for the help!
 
I'd personally just change the size of the icon.

Using your old css, this is what I'd have:

Code:
.username .style5 {
    background-image: url("styles/default/xenforo/smilies/award_star_bronze_2.png");
    background-repeat: no-repeat;
    background-size: 12px auto;
    color: #a57164;
    font-family: "Lucida Grande",Helvetica,Arial,sans-serif;
    font-weight: bold;
    padding-left: 14px;

Changes:
background-size: 12px auto;
padding-left: 14px;
 
Top Bottom