Make pricing font size smaller

Solved

Make pricing font size smaller

VinUp
Excursionist
50 0 13

Hi, how do you make the font size for the pricing on the mobile version smaller? It only has to be for the pricing at the top just below the rating. The website is: https://vinup.nl/en/products/vinyl-record-rack

VinUp_0-1739440219931.png

 

Accepted Solution (1)

ZestardTech
Shopify Partner
6095 1091 1463

This is an accepted solution.

Hello @VinUp,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:

 

@media screen and (max-width:768px){
.price-item.price-item--regular {
    font-size: 1.6rem !important;
}
.price.price--large.price--on-sale.price--show-badge span {
    font-size: 1.6rem !important;
}
}

 

ZestardTech_0-1739442762761.png


Let me know if you need further assistance!

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

View solution in original post

Replies 4 (4)

LizHoang
Shopify Partner
1250 158 196

Hi @VinUp 

- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

@media (max-width: 768px) {
s.price-item.price-item--regular {
    font-size: 15px !important;
}
}

 

Result: 

LizHoang_0-1739440452360.png

 

Best,

Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program

rajbhai
Shopify Partner
10 2 5

Add This Code In Edit Code > Base.css File 

@media only screen and (max-width: 600px) {
  body .product .price--on-sale .price-item--regular, body .product .price .price-item {
     font-size: 16px !important;
  }
}

 

ZestardTech
Shopify Partner
6095 1091 1463

This is an accepted solution.

Hello @VinUp,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:

 

@media screen and (max-width:768px){
.price-item.price-item--regular {
    font-size: 1.6rem !important;
}
.price.price--large.price--on-sale.price--show-badge span {
    font-size: 1.6rem !important;
}
}

 

ZestardTech_0-1739442762761.png


Let me know if you need further assistance!

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

rajbhai
Shopify Partner
10 2 5

Add this code in edit code > base.css and add this code at the end of the file

 

@media only screen and (max-width: 600px) {
  body .product .price--on-sale .price-item--regular, body .product .price .price-item {
     font-size: 16px !important;
  }
}