Fixed [BUG] Display Bug (with long user names)

Happens only with long user names. See screenshot.

View attachment 33

Only happens when User Name is longer than 13 chars. Might also happen when score exceeds 99,000...dunno.
 

Attachments

  • arcade display bug.jpg
    arcade display bug.jpg
    68.6 KB · Views: 129
I like fluid. Maybe just reduce the first column in the table to like 50%, then 2nd column 25% and fourth column 25%....??
 
Nope, the first column stays a % so its fluid, the 2nd and 3rd are straight fixed so I will alter that. I may try making them all fluid.
 
In case anyone wants to know how I fixed this...

Open template arcade.css

Find:

Code:
.gameList .champion {
width: 150px;
text-align: center;

Change to:

Code:
.gameList .champion {
width: 200px;
text-align: center;
 
Also, if you want the "Personal Best" column centered like the "Champion" column, find this in arcade.css:

Code:
.gameList .personalBest {
width: 149px;
}

and change to:

Code:
.gameList .personalBest {
width: 149px;
text-align: center;
}

Result:

View attachment 40
 

Attachments

  • ddd.jpg
    ddd.jpg
    62.7 KB · Views: 111
Back
Top