Re: how to change the font size for the product description - Dawn

Solved

how to change the font size for the product description - Dawn

JacJacC
Excursionist
42 0 9

Hi all,

 

Do you have any idea how to change the font size of the product description, tried to add the below code to the 

base.css but the description font size didn't change at all.

 

.product__description {

    font-size: 18px !important;

}

 

thanks,

Jac

Accepted Solutions (4)

Vinsinfo
Shopify Partner
426 143 142

This is an accepted solution.

@JacJacCPlease follow below steps to update the font size for the description. Let me know whether it is helpful for you.

 
1. From admin go to "Online stores" -> "Themes".
2. Click action button from the current theme and select "Edit code".
3. Search for "base.css" file and paste the below code at the bottom of the file.

 

.product__description * { 
    font-size: 18px !important;
}

 

 
Result will be like, 
Vinsinfo_0-1714636531773.png

 

Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to [email protected] for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support

View solution in original post

Moeed
Shopify Partner
5396 1458 1744

This is an accepted solution.

Hey @JacJacC 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag.

<style>
.product__description.rte.quick-add-hidden p span {
    font-size: 18px !important;
}
</style>

RESULT:

Moeed_0-1714636871550.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

PageFly-Oliver
Shopify Partner
878 190 181

This is an accepted solution.

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

 

<style>
h3[id*='featured_collection'] p span{
font-size:18px !important
}
</style>

 

 

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Vinsinfo
Shopify Partner
426 143 142

This is an accepted solution.

@JacJacC I think you have fixed it now. Please let me know if you still need any help.

Please reach out to [email protected] for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support

View solution in original post

Replies 11 (11)

Moeed
Shopify Partner
5396 1458 1744

Hey @JacJacC 

 

Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


JacJacC
Excursionist
42 0 9

https://gallery0206.com/ 

 

Hi @Moeed here the link, thx

Moeed
Shopify Partner
5396 1458 1744

This is an accepted solution.

Hey @JacJacC 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag.

<style>
.product__description.rte.quick-add-hidden p span {
    font-size: 18px !important;
}
</style>

RESULT:

Moeed_0-1714636871550.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


PageFly-Oliver
Shopify Partner
878 190 181

Hi @JacJacC ,

 

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

 

<style>
.product__description,.product__description * {

    font-size: 18px !important;

}
</style>

 

 

I see your store looks very nice, warm, and elegant, but in my opinion, you should consider adding a heading banner + CTA button on your main banner. it will help the customer easily purchase the product bestseller and increase traffic product page

PageFlyOliver_2-1714635294668.png

 

 

 

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

JacJacC
Excursionist
42 0 9

Hi @PageFly-Oliver  I added the code to the base.css, however, I didn't change the font of the product description, it still looks very small on the home page

PageFly-Oliver
Shopify Partner
878 190 181

on the home page, you can try

<style>
h3[id*='featured_collection'] p span{
font-size:18px !important
}
</style>

 

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

JacJacC
Excursionist
42 0 9

you mean at the home page CSS? @PageFly-Oliver 

PageFly-Oliver
Shopify Partner
878 190 181

This is an accepted solution.

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

 

<style>
h3[id*='featured_collection'] p span{
font-size:18px !important
}
</style>

 

 

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

Vinsinfo
Shopify Partner
426 143 142

This is an accepted solution.

@JacJacCPlease follow below steps to update the font size for the description. Let me know whether it is helpful for you.

 
1. From admin go to "Online stores" -> "Themes".
2. Click action button from the current theme and select "Edit code".
3. Search for "base.css" file and paste the below code at the bottom of the file.

 

.product__description * { 
    font-size: 18px !important;
}

 

 
Result will be like, 
Vinsinfo_0-1714636531773.png

 

Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to [email protected] for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support
JacJacC
Excursionist
42 0 9

thanks, but in the homepage, the description still showing very small font, any idea?

Vinsinfo
Shopify Partner
426 143 142

This is an accepted solution.

@JacJacC I think you have fixed it now. Please let me know if you still need any help.

Please reach out to [email protected] for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support