Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: Changing announcement bar text and price text

Solved

Changing announcement bar text and price text

blcksoap
Shopify Partner
15 0 6

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

Accepted Solution (1)

Nick_Marketing
Shopify Partner
1487 336 465

This is an accepted solution.

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;
}

 

Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).

View solution in original post

Replies 2 (2)

Nick_Marketing
Shopify Partner
1487 336 465

This is an accepted solution.

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;
}

 

Nick | Ecommerce & Marketing Technology Consultant | Toronto, CANADA
- For consulting work availability, please send me a Private Message or submit a ✍️Contact Form.
- For FREE Shopify Tutorials, Subscribe to my YouTube channel (▶️ Ecommerce TV).
blcksoap
Shopify Partner
15 0 6

Thank you, this worked.


Do you also know how to change the product title on the product page?