Collection page filter section - troubleshooting

On my website’s collection page, in the filter tab, I’ve noticed that there’s no space between the word ‘In stock’ and the parentheses containing the number. Currently, it displays as ‘In stock ( number)’, but I’d like it to appear as ‘In Stock ( number )’. Could you please take a look at the filter sidebar and adjust the spacing accordingly?

website: https://the-rugged.com/

password: rugged

Hi @Sivadarshan

let try to add this custom css code:

.facet-checkbox__text {
  letter-spacing: 3px;
}
.facet-checkbox__text .facet-checkbox__text-label {
  letter-spacing: normal;
}

1 Like