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:
![]()
Thank you
A user seeks to make three text elements bold on collection pages in Dawn theme 15.2.0:
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 elementsAll selectors apply font-weight: bold; to achieve the desired formatting.
Status: Resolved - the user confirmed the solution worked successfully.
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:
![]()
Thank you
Hello @TGregs
Please follow the steps below after logging into the Shopify admin:
.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.
Thank you very much!
You’re welcome! @TGregs