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
A user seeks to make product prices appear bolder on their Shopify store using the Taste theme, and wants to center-align size and quantity selectors on desktop.
Solutions Provided:
Multiple respondents offered CSS code solutions:
For bold pricing: Add custom CSS targeting .price-item.price-item--regular with font-weight: bold; to the themeās stylesheet (styles.css or base.css)
For centering size/quantity fields: Add margin: auto; to .product-form__input.product-form__quantity and .product-form__input.js.fieldset selectors
Implementation steps:
Screenshots were shared showing the expected visual results after applying these modifications.
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
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,
.price-item.price-item--regular {
font-weight: bold;
}
Hi @imazele ,
Try this.
.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.