Changing announcement bar text and price text

Dear community,

I want to make some adjustments to my store. I’d like to know the following things:

  1. How do I change the text to BOLD in the announcement bar?
  2. 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?