Change price size for featured collection ONLY

Topic summary

A user wants to reduce the price font size to 12px specifically for featured collection sections on their Shopify store (Dawn theme), while hiding the original pre-discount price.

Two solutions provided:

  1. ZestardTech’s approach: Add CSS code to the base.css file targeting .collection .price-item and .collection .price__sale classes with font-size: 12px

  2. syedsumaimaly’s approach: Insert CSS code in either theme.liquid or base.css (above </body> tag) targeting .collection.section-template--[specific-ID]__featured_collection with font-size: 12px

Key difference: The second solution uses a more specific selector tied to the featured collection template ID, which may better isolate changes to only featured collections rather than all collection pages.

Both responses include code snippets, though some text appears corrupted or reversed in the original posts. The discussion remains open pending confirmation from the original poster on which solution worked.

Summarized with AI on November 16. AI used: claude-sonnet-4-5-20250929.

Good morning,

I would like to change the size of prices ONLY for featured collections to 12px. And I would like us not to see the base price (before the promo) in the featured collections sections ONLY.

Do you know how to do it please?

Theme: Dawn
Website: jadis-shop.com
password:rj

thanks in advance
​Rechercher des détails

1 Like

@JADIS can you share screenshot?

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.collection .price-item.price-item--regular {
font-size: 12px;
}
.collection .price__sale {
font-size: 12px;
}

1 Like

**Hi @JADIS **

Follow these Steps:

Go to Online Store Edit Code Find theme.liquid file or base.css

Add the following code in the bottom of the file above </body

.collection.section-template--19833655886153__featured_collection-padding.collection--full-width .price {
    font-size: 12px;
}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solutions.