Hello I want to put my price more bold on taste theme

Hello I want to put my price more bold please !

https://www.five-pocket.com/products/pro-club-heavy-weight-t-shirt-white

I also want to center align size and quantity on computer because it look already good on mobile look at the picture

1 Like

Hello @imazele

Its Artzen Technologies! We will be happy to help you today.

look like this

Let me know if need further assistance
Regards,
Artzen Technologies

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > styles.css and paste this at the bottom of the file:
.price-item.price-item--regular {
    font-weight: bold;
}

Hi @imazele ,

Try this.

  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” 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.
.price__regular {
    font-weight: bold;
}
.product-form__input.product-form__quantity {
    margin: auto;
}
fieldset.js.product-form__input {
    margin: auto;
}

Result:

I hope it help.