Sorry, we don't support your browser.  Install a modern browser

Price: Option to increase size and apply bold styling#132

?

Head to your Theme editor (Customize)
Click Theme settings (cog wheel icon)
Click Custom CSS
Add this code to the Custom CSS field:

.product__price span,
.product-item__price-wrapper font-weight: bold;
font-size: 24px;
}
Click Save

6 months ago

Oops! It looks like that code above is missing an important bracket and will not work as intended. Here’s the code you’ll need to adjust the product price.

Head to your Theme editor (Customize)
Click Theme settings (cog wheel icon)
Click Custom CSS
Add this code to the Custom CSS field:

.product__price span,
.product-item__price-wrapper{ 
font-weight: bold;
font-size: 24px;
}

Click Save

6 months ago
1