Hi - I am looking for a way to make the price larger and bold (and maybe a different color) on the product pages only (not colleciton pages). We are using the Turbo theme.
Thanks!!
A user seeks to make product prices larger, bold, and possibly a different color on product pages (not collection pages) using the Turbo theme.
Initial Solution:
.span.money elements with font-weight: bold, font-size: 20px, and color: redRefinement:
.modal_price > .price-ui > .price > .moneyBoth solutions involve editing the theme code directly and applying custom CSS styling with the !important flag to ensure the changes take effect.
Hi - I am looking for a way to make the price larger and bold (and maybe a different color) on the product pages only (not colleciton pages). We are using the Turbo theme.
Thanks!!
Hi @Jennifer_Greenl ,
This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/styles.css->paste below code at the bottom of the file:
span.money {
font-weight: bold;
font-size: 20px;
color: red !important;
}
Note: You can change font-size and color value to match your store.
Hope my answer will help you.
Best regards,
Victor | PageFly
Yes, but that changes it on the collection page as well. Is there a solution for just the product page?
@Jennifer_Greenl , Yes, you can use this code below:
.modal_price > .price-ui > .price > .money {
font-weight: bold;
font-size: 20px;
color: red!important
}