How can I add spacing between product title and price - dawn theme?

Topic summary

A user seeks to increase spacing between the product title and price on their Shopify store using the Dawn theme (version 6.0).

Solutions provided:

  • Add CSS to the bottom of base.css file:

    .product__info-wrapper h1 {
      padding-bottom: 10px;
    }
    

    (Adjust the 10px value as needed)

  • Alternative: Insert CSS in theme.liquid before the </body> tag:

    .product__title h1 {
      margin-bottom: 20px !important;
    }
    

Follow-up question:

The original poster asks if there’s a way to edit individual elements directly, specifically wanting to reposition the subtitle text (‘Stalen LP-Houder’) to appear directly under the main title.

Status: Partially resolved; initial spacing issue addressed, but subtitle positioning question remains open.

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

When i click on a product, the product title and price are too close together and I wanted to ask how i can add spacing between them? - DAWN THEME

URL: luminaskn.co.uk

Password: Lumina2506

Hi @Luminaskn

Add this code at the bottom of base.ccs file (You can increase the value if need from 10px to “what you want” :

.product__info-wrapper h1 {
  padding-bottom: 10px;
}
1 Like

Hello @Luminaskn

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product__title h1 { margin-bottom: 20px !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Thanks! Is there also an option where i can edit these individual elements myself? For example the text ‘Stalen LP-Houder’ i would like to have it straight under the title.