Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
Solved! Go to the solution
This is an accepted solution.
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;
}
Was this helpful? Like or Accept solution - Buy me a coffee ☕️
- Contact me: Xipirons | WhatsApp
- Shopify Developer based in France, helping online merchants succeed
This is an accepted solution.
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;
}
Was this helpful? Like or Accept solution - Buy me a coffee ☕️
- Contact me: Xipirons | WhatsApp
- Shopify Developer based in France, helping online merchants succeed
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.
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 </body> on theme.liquid
<style>
.product__title h1 {
margin-bottom: 20px !important;
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.