Hi
I am hoping someone is able to help. Trying to make the pricing larger and make the special prices in Red and larger also.
Also how to do a FAQ Page & Tracking order page ?
Fingers crossed someone is able to give me some help.
Cheers
Hi
I am hoping someone is able to help. Trying to make the pricing larger and make the special prices in Red and larger also.
Also how to do a FAQ Page & Tracking order page ?
Fingers crossed someone is able to give me some help.
Cheers
Please share your store URL.
Please share screenshot what do you want!
please Go to Online Store->Theme->Edit code then go to assets/theme.scss .liquid->paste below code at the bottom of the file.
.product-card__brand, .product-card__price{
font-size:1em !important;
font-weight:bold;
color:#961821 !important;
}
.product-single__price{font-size:2.17647em !important; color:#961821 !important; }
create faq page check link https://easycodeguide.com/build-customizable-faqs-page-using-section-shopify.html
add this css code
.product-card__brand, .product-card__price{
font-size:1em !important;
font-weight:bold;
color:#961821 !important;
}
.product-single__price{font-size:2.17647em !important; color:#961821 !important; }
Try following css code
// Product price
.product-single__price--compare {
font-size: 1em;
color: #DB2F8D;
}
.product-single__price-container {
font-size: 1.4em;
color: black;
}
// Collection price
.product-card__regular-price {
font-size: 0.9em;
color: #DB2F8D;
}
.product-card__price {
font-size: 1.1em;
color: black;
}
You can change colors :
with their name : black, blue, magenta, green etc.
with their RGB value : #ff0022 etc.
Thanks!