Hi,
Can someone tell me how to increase the size and make bold the sub-headings in my product page? I’m currently using the Dawn theme. I’ve attached an image to show the headings I’m wanting to change.
Thanks heaps!
Hi,
Can someone tell me how to increase the size and make bold the sub-headings in my product page? I’m currently using the Dawn theme. I’ve attached an image to show the headings I’m wanting to change.
Thanks heaps!
Please follow the instructions below.
legend.form__label {
font-size: 20px;
font-weight: bold;
}
Can you share the link to your website please? This would make it a little bit easier for me to guide you in the right direction.
Hi,
This is the link to my store.
https://illuminateme2023.myshopify.com/products/3d-printing-moon-light-galaxy-light
Thanks heaps!
Thanks so much!! Is there anyway to increase the size for the ‘Quantity’ sub heading too?
To change the size of the quantity font label, try this code in your theme customer on the product page, where it says Add Custom CSS:
.product-form__quantity .form__label{
font-size: 20px;
}
Adjust the 20px as needed. Does that work?
legend.form__label, label.quantity__label.form__label {
font-size: 20px;
font-weight: bold;
}
You can change the code to the following instead. Follow the same step
Awesome thanks heaps!!
Awesome!! Thanks this fixed everything!! I was also wondering, do you know how to increase the spacing between ‘Size’, ‘Electrical output’ and ‘Quantity’?
Thanks!
Add this code to the Custom CSS in your Theme editor.
.product .form__label {
padding-bottom: 10px;
}