Can I decrease font only in product description and other pages

I want to decrease font of Product description and other pages such as about us etc. When I decrease the font (Body) in Customize section, all the words get smaller, “About us” even “Shop” button become super small. How can I avoid it?

Thank you a lot in advance!

Hi @arutze ,

Try this. And tell me if change the other Fonts. Thanks!

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.product__description.rte.quick-add-hidden p {
    font-size: 15px;
}

Result:

I hope it help.

Hello @arutze ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file → Add this following code at the bottom of page

.product-description {
  font-size: 14px;
}
.about-us-section {
  font-size: 14px;
}

Save changes

Hope this can help.

Transcy

Hi @Made4uo-Ribe thank you!

How can I increase the product name in “You may also like” and “Featured product” section

Try this one if work in the “You may also like” and “Featured product” section. I cant check 2 pages on my end. So let me know if changes both of them or not. Thanks!

.card__content a {
    font-size: 20px;
}

Result:

I hope it help.

thank youu, it helped!!