Dawn theme 15.2.0 | Change "Filter:" and "Sort by:" and "Products" text to a bold format

Topic summary

A user seeks to make three text elements bold on collection pages in Dawn theme 15.2.0:

  • “Filter:”
  • “Sort by:”
  • “X Products” count

Solution provided:

Add CSS code to the base.css file targeting specific classes:

  • .facets .facets__heading - for main headings
  • .facets .facet-filters__label label - for filter labels
  • .facets .product-count__text span - for product count
  • .facets-wrapper variants - for mobile and wrapper elements

All selectors apply font-weight: bold; to achieve the desired formatting.

Status: Resolved - the user confirmed the solution worked successfully.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Dear all, can you please assist?

In Dawn theme 15.2.0 on the collections pages I would like to change the “Filter:” and “Sort by” and “X Products” text formatting to bold.

Please see screenshot of fields I would like to change:

TGregs_0-1741723845453.png

Thank you

Hello @TGregs

Please follow the steps below after logging into the Shopify admin:

  • Go to your Shopify Admin panel.
  • Click on Online Store > Themes.
  • Find the theme you want to edit and then click Actions > Edit code.
  • Search base.css
  • Insert the provided CSS code at the end of the file and save the changes.
.facets .facets__heading 
{
    font-weight: bold;
}
.facets .facet-filters__label label 
{
    font-weight: bold;
}
.facets .product-count__text span 
{
    font-weight: bold;
}
.facets-wrapper .product-count__text span 
{
    font-weight: bold;
}
.facets-wrapper span.mobile-facets__open-label 
{
    font-weight: bold;
}

Please hit Like and Mark it as a Solution if you find our reply helpful.

1 Like

Thank you very much!

You’re welcome! @TGregs