Add to cart remove bold

Does anybody know how we can remove bold from “ADD TO CART” for all products on our website.

URL: https://excitarestudios.com/products/flower-ring

Hi @JoaquinExcitare

I see your Add to cart button is already really thin, like the thinnest, we can get. You can try to add this code

Please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
button.product-form__submit * {
    font-weight: 100 !important;
}

Here is the result:

I hope this helps

Best,

Daisy

Hi @JoaquinExcitare

The “Add to Cart” button is already unbold.

Hi @JoaquinExcitare , thanks for reaching out.

To address the issue, please go to your Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS and insert the following custom CSS code:

button.product-form__submit {
    font-weight: 400 !important;
}

This is the expected result:

I hope my solution is helpful to you.

Liz