How can I modify the font size of all tables at once?

Hi community,

how can I change the font size of all tables at once?

I tried what was described here, but it doesn’t work : https://community.shopify.com/c/shopify-design/brooklyn-how-to-change-font-size-for-tables-only/m-p/1070396#M271632

I am using the Taste Theme.

Kind regards

1 Like

Hi @Vapes4You ,

Maybe you have a diffrent name of selector. Would you mind to share your URL website(with password)? Thanks!

1 Like

Hi @Made4uo-Ribe ,

thank you for you response the url is www.vapes4you.de

I have sent you the password.

Thank you in advance

Kind regards

1 Like

Hi @Vapes4You

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css or Theme.css

table {
    font-size: 20px !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

1 Like

Hi there,

Thank you for the information, I check your website.. I didnt see any table but a unordered list. Which font you want specifically change? the products fonts? the price fonts?

  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 “theme.scss.liquid, styles.scss.liquid or base.css” file, depending on which file your theme uses to store its CSS styles.
  4. At the bottom of the file, add the following CSS code:
  5. And Save.

This is the code for product description font.

.card__information h3 {
    font-size: 20px;
}

This if for the price.

.card-information span {
    font-size: 25px;
}

I hope it help.

1 Like

Hi @Made4uo-Ribe ,

the tables are in most product pages. Unfortunately your suggestion did not work, but the answer of @PageFly-Richard did the trick.

Thank you for your efforts!

Hi @PageFly-Richard ,

thank you very much, this did the trick (in the Base.css)!

Kind regards

Vapes4you