Stars needs more space...

Maybe you need to increase the width of the widgets spaces. I am using 300px for Sidebar and side navigation width (and 1400px of maximum page width).
 
The space is hardcoded to 50px. You could add a template modification (did it recently for my forums):

Template: xfrm.less

Search for:

CSS:
    .ratingFilter-rating
    {
        min-width: 50px;
    }

Replace with:

CSS:
    .ratingFilter-rating
    {
        min-width: 70px;
    }

It would be better if the developers would add something like white-space: nowrap;
 
Back
Top Bottom