Collection page sort by font size make smaller

I want to make the sort by section to be smaller in font size

Screenshot 2024-10-26 115652.png

https://rugd-in.myshopify.com/

password: rugged

Hey @Sivadarshan !

If you head to Admin > Online Store > Themes > customise > Edit Code > component-facets.css

Around line 51, you can reduce the font size of ‘Sort by’ by decreasing the font-size in this classes styling.

.facet-filters__label {
  display: block;
  color: rgba(var(--color-foreground), 0.85);
  font-size: 1.4rem;
  margin: 0 2rem 0 0;
}

Currently font-size: 1.4rem

2024-10-26T13_47_42,142683631+07_00.png

font-size: 1rem for example

2024-10-26T13_48_16,754746835+07_00.png

Hope this helps!