Dear community,
I want to make some adjustments to my store. I’d like to know the following things:
- How do I change the text to BOLD in the announcement bar?
- How do I change the TEXT SIZING of the PRICE and COMPARED AT PRICE?
Website: cozybandnl.myshopify.com
Password: owl
Theme: Motion
Kind regards
Try adding this code to the bottom of theme.css
/* Bold announcement text */
.announcement__text.announcement__text--open {
font-weight:bold;
}
/* compare price font size */
.product__price.product__price--compare {
font-size: 12px;
}
/* sale price font size */
.product__price.sale-price {
font-size:18px;
}
1 Like
Thank you, this worked.
Do you also know how to change the product title on the product page?