Stars needs more space...

  • Thread starter Thread starter Deleted member 184953
  • Start date Start date
D

Deleted member 184953

Guest
Affected version
2.3 RC
Star only has 4 letters but not in all languages... ⭐

Capture d'écran 2024-06-17 233920.webp Capture d'écran 2024-06-17 233912.webp
 
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