Fixed Overlapping Numbers

Vincent

Well-known member
This is happening to me in Chrome and Safari on OSX Lion, don't know about Windows.

It doesn't happen in Firefox and Opera.
 

Attachments

  • categories.webp
    categories.webp
    8.8 KB · Views: 17
CSS fixes it right up:
Code:
.categoryList {
white-space: nowrap;
}

From this:
Image%202012.01.31%204:21:54%20PM.png


To this:
Image%202012.01.31%204:22:20%20PM.png
 
Yep... best solution would be to clip the titles to a certain number of characters like URLs/thread titles do (or make the title dimensions a specific size with hidden overflow). The no-wrap CSS is still better in it's current form than wrapping the number and overlapping the number on the adjacent line. :)
 
Top Bottom