Hi, i would like to make the main price in the collection page for mobile only smaller, cause i find it to big. How do i do this?
The website you can use is: https://vinup.nl/en/collections/holders-and-stands
Many thanks
Hi, i would like to make the main price in the collection page for mobile only smaller, cause i find it to big. How do i do this?
The website you can use is: https://vinup.nl/en/collections/holders-and-stands
Many thanks
Hi @VinUp
You can do that by adding this code to Custom CSS in Sales channels > Online Store > Themes > Customize > Theme settings. You can adjust 20px in code with your value to make it fit your request.
}
@media (max-width: 600px) {
html .price--on-sale .price-item--regular, .price .price-item {
font-size: 20px !important;
}
}
@VinUp
I have separate your price for mobile one is regular price one is sale price , You can use both same size or use different size.
How to Add This to Shopify Dawn Theme:
Alternative (Edit Theme CSS Directly):
@media (max-width: 750px) {
s.price-item.price-item--regular {
font-size: 10px!important;
}
.price .price-item{
font-size: 12px!important;
}
}