Solved

How can I enhance and enlarge product subheadings in the Dawn theme?

illuminateme202
Tourist
6 0 1

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!

 

Help.jpg

Accepted Solution (1)
made4Uo
Shopify Partner
3805 713 1128

This is an accepted solution.

Hi @illuminateme202 

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

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!

View solution in original post

Replies 9 (9)

made4Uo
Shopify Partner
3805 713 1128

Hi @illuminateme202 

 

Please follow the instructions below.

 

1. From you Admin page, go to Online store > Themes > Customize
2. Go to your product page
3. Click Product Information. This should open the panel on the right hand. Click Custom CSS, and paste the code below. Please refer to image below

legend.form__label {
    font-size: 20px;
    font-weight: bold;
}

 

made4Uo_0-1686354711059.png

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!
illuminateme202
Tourist
6 0 1

Thanks so much!! Is there anyway to increase the size for the 'Quantity' sub heading too?

made4Uo
Shopify Partner
3805 713 1128

This is an accepted solution.

Hi @illuminateme202 

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

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!
illuminateme202
Tourist
6 0 1

Awesome!! Thanks this fixed everything!! I was also wondering, do you know how to increase the spacing between 'Size', 'Electrical output' and 'Quantity'? 

 

Thanks!

 

made4Uo
Shopify Partner
3805 713 1128

Hi @illuminateme202 

 

Add this code to the Custom CSS in your Theme editor.

.product .form__label {
    padding-bottom: 10px;
}

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!

Zqdo
Shopify Partner
803 32 63

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. 

banned
illuminateme202
Tourist
6 0 1
Zqdo
Shopify Partner
803 32 63

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?

banned
illuminateme202
Tourist
6 0 1

Awesome thanks heaps!!