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
Hello,
I would like to change the Dawn theme price font as described.
Both on the home page and category pages.
I am using the standard Dawn theme.
Thanks!
Solved! Go to the solution
This is an accepted solution.
Hello @falkor
You can follow these steps:
1. Go to Online Store->Theme->Edit code
2. Open your theme.liquid file, paste the below code before </body>
<style>
.price .price-item {
font-weight: bold !important;
color: #0005ab !important;
font-size: 20px !important;
}
.price--on-sale .price-item--regular {
font-size: 15px !important;
}
</style>
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team
This is an accepted solution.
Hello @falkor
You can follow these steps:
1. Go to Online Store->Theme->Edit code
2. Open your theme.liquid file, paste the below code before </body>
<style>
.price .price-item {
font-weight: bold !important;
color: #0005ab !important;
font-size: 20px !important;
}
.price--on-sale .price-item--regular {
font-size: 15px !important;
}
</style>
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team