Can I make the price text bigger and bold?

The price blends in currently so we feel it gets lost with the description

Is it possible to make only the price bigger or make it bold?

https://www.shopbymare.com/collections/shop-the-look/products/kelly-high-waisted-jeans

2 Likes

Hi @Shopbymare ,

I agree with you. You can change the price by following the instructions below.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the stylesheet.css
  3. Paste the code below at the very bottom of the file.

NOTE: Adjust 40px, on your font size preference

span.price-item.price-item--regular {
    font-size: 40px;
    font-weight: bold;
}

Hi @Shopbymare !

This is PageFly - Advanced Page Builder. I would love to give you some recommendation.

Add this code at bottom of
Online Store-> Themes → Edit code->Assets->stylesheet.css;

.price-item {
font-size: 34px !important;
font-weight: bold !important;

}

You can use size as you want.

Best Regards;
Pagefly

@Shopbymare

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/stylesheet.css ->paste below code at the bottom of the file.
.product__section-content .price-item {
font-size: 40px;
    font-weight: bold;
}