How can I make prices bold on Debutify theme?

Hi there,

Can you please help me to get bold the prices. I’m using Debutify theme and this is my URL https://tentystore.com/

Many thanks

Marc

2 Likes

Try adding this code to the bottom of theme.scss.css

.price.price-compare {
    font-weight: bold;
}
.price.on-sale {
    font-weight: bold;
}

@MarksBcn

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

.price { font-weight: bold !important; }

Thanks!

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

.price { font-weight: 800 !important; }

@MarksBcn

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.price{font-weight: bold;}