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
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.
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;
}
Hello @Luminaskn
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.