Fixed  Minor Styling Issue On Trophies

Anthony Parsons

Well-known member
As you can see from the image, if you use 4 numeric characters, instead of the column floating / adjusting, the 1000 points breaks across lines with a comma.

Screen shot 2010-11-09 at 1.33.44 PM.webp
 
As you can see from the image, if you use 4 numeric characters, instead of the column floating / adjusting, the 1000 points breaks across lines with a comma.

View attachment 5684

You may want to go into the trophy.css and adjust the following css accordingly either adjusting the width or lowering the font-size or both.

Code:
    .trophy .points
    {
        float: left;
        width: 60px;
        text-align: center;
        font-size: 18pt;
        font-weight: bold;
    }
 
Top Bottom