How can I apply bold formatting to text in my pricing?

Hello,

I would like to put BOLD on the$250.00$125.00 :hatching_chick: Early bird offer :hatching_chick:

How to do please ?

Thanks

1 Like

Hi @mdezaka1

Thanks Welcome to the Shopify community!

  1. Go to Online Store->Themes->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.product-single__price span, .product-single__price s {
    font-weight: bold;
}
1 Like

@mdezaka1

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.product-price__sale, .product-single__price{ font-weight:bold !important; }

Hope this helps.

Thanks!

1 Like

Hello There,

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

p.product-single__price.product-single__price-1496846987120 s#ComparePrice-1496846987120 {
font-weight: bold;
}
span.product-price__price.product-price__price-1496846987120.product-price__sale.product-price__sale–single span#ProductPrice-1496846987120 {
font-weight: bold;
}