Changing price font size and to bold for refresh theme on product page

Hi, I wanted to increase the font-size of my price tag on the product page and make them Bold. Also preferably the compared-to-price greyish while the actual price is black. How can I make this happen?

Hi Sharon I need your help.

Hi @blasoo ,

Would you mind to share your URL website? with password if its protected. Thanks!

Thank you for the information. Try this one.

  1. From your Shopify admin dashboard, click on ā€œOnline Storeā€ and then ā€œThemesā€.
  2. Find the theme that you want to edit and click on ā€œActionsā€ and then ā€œEdit codeā€.
  3. In the ā€œAssetsā€ folder, click on ā€œbase.css, style.css or theme.cssā€ file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.price__container span.price-item.price-item--sale.price-item--last {
    font-size: 25px;
    font-weight: bolder;
}

Result:

I hope it help.

That is fantastic already! But could you help me to make it look like this?

Im not sure is this would be enough but this is I think the biggest one.

Change the font-weight: 900;

Like this.

font-weight: 900;

Result:

You are the best! Thank you so much! I am awful at coding, and I was still wondering how to enlarge the compared-at-price and how to make it say the ā€˜Alennus 50%’ instead of the Sale

Yes we can enlarge the that one. And you can change the size. We can also change the sale badge but we need to remove 1st the Sale. And put another one because if not it needs to edit the html.

Try this.

span.badge.price__badge-sale.color-accent-1 {
display: none;
}
.price__container:after {
content: "Alennus 50%";
position: absolute;
height: 16px;
font-size: 12px;
background: blue;
color: white;
padding: 0 2px 0 2px;
}
.price__sale s.price-item.price-item--regular {
font-size: 25px;
}

Result:

If my answer give you solution, please dont forget to MARK SOLUTION and Likes for tips. Thanks!

Hi there! I used your code, but the problem is I only made discounted prices bold, regular non-discounted prices stayed unchanged.

evernight_0-1701808476378.png

evernight_1-1701808522368.png

But I want to leave my strike-through price unchanged, I don’t want to make it bold.