How to change font ...
 
Notifications
Clear all

How to change font size and making it bold for the price

13 Posts
3 Users
2 Reactions
3,751 Views
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

Hello Plaktheme,

I need help how to change price size and also how to make it bold.. I can see if I change body text size it changes the price size but also I realise every text also increase in size.. How to make only pricing size bigger and also how do I make the pricing font bold?

I have tried the below code but it didn't change the size.

.price-item--regular {
font-size : 30px ;
}


 

 Thank you,

Carolina


   
Quote
plaktheme
(@plaktheme)
Reputable Member
Joined: 5 years ago
Posts: 0
 

Hi Carolina,

Katrine here from Plak Theme support in order to assist you with the styling of the product price in product page.

We didn't add too many options to change each feature individually to keep the theme light and fast by consequence.

However, in order to change the font size and the weight of the product price in product page, I invite you to follow these steps :

 

  • From your Shopify dashboard, click Online store > Actions > Edit code
  • Open the file theme.css (available from the version 2.4 and beyond, otherwise open the file theme.scss.liquid)
  • At the very bottom of the file, add this code
/* this is to style the regular product price */
.product-template__container .price-item--sale {
font-size : 30px;
font-weight : bold;

/* this is to style the crossedout product price */
}
.product-template__container .price-item--regular {
font-size : 32px;
font-weight : bold;
}
  • Click Save

 

Note : The first part of the code will change the style of the regular product price, while the second one will change the style of the crossed out price (if you have a promo)

 

Let me know Carolina if this worked for you and if you need any further assistance 🙂

Best regards,
Katrine

Katrine | Technical support at Plak, Scrowp & Vantout
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as a Solved Solution


   
ReplyQuote
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

Hello @plaktheme,

I've tried the code but it didn't work. Is there another way?


 Thank you,

Carolina


   
ReplyQuote
Jasmine Keinsh
(@plakadmin)
Estimable Member Admin
Joined: 4 years ago
Posts: 131
 

Hi @nashimbi

I have tried the code on my side on Plak 2.4 and it worked great for me, may be your site code has been altered somehow.

Could you please go to your forum profile and add your website link in the box mentioned in the screenshot below ?

This way I can check what's going wrong 

 

Thanks in advance

Jasmine | Plak theme support
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as a Solved Solution


   
ReplyQuote
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

Hello Jasmine,

I have added my website link as in screenshot you've provided.

ps. I've put the password for the website in about me box.

Kind regards,

Carolina

This post was modified 3 years ago by Caro

   
ReplyQuote
plaktheme
(@plaktheme)
Reputable Member
Joined: 5 years ago
Posts: 0
 
Posted by: @nashimbi

Hello Jasmine,

I have added my website link as in screenshot you've provided.

ps. I've put the password for the website in about me box.

Kind regards,

Carolina

Thank you Carolina for providing me with the site link + the password.

I checked your site, try to use these codes instead :

 

/* when there a regular + sale price
/* regular product price */
.product-template__container .price-item--sale {
font-size : 25px !important;
font-weight : bold !important;
/* crossedout product price */
}
.product-template__container .price-item--regular {
font-size : 28px !important;
font-weight : bold !important;
}

/* when there is a regular price only */
.product-template__container .price-item--sale-only {
font-size : 28px !important;
font-weight : bold !important;
}

 

Let me know if it worked

Best regards,

Katrine | Technical support at Plak, Scrowp & Vantout
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as a Solved Solution


   
ReplyQuote
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

Hello @plaktheme,

I've tried the code you've given but unfortunately it didn't work 😣.. will there be another way?

Best Regards,

Carolina


   
ReplyQuote
plaktheme
(@plaktheme)
Reputable Member
Joined: 5 years ago
Posts: 0
 
Posted by: @nashimbi

Hello @plaktheme,

I've tried the code you've given but unfortunately it didn't work 😣.. will there be another way?

Best Regards,

Carolina

This is weird, it should normally work, anyway, I have sent an access request to your store, once the access is granted, I will check the issue and fix it

Katrine

Katrine | Technical support at Plak, Scrowp & Vantout
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as a Solved Solution


   
ReplyQuote
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

Hello Katrine,

I've just accepted the request

Carolina


   
ReplyQuote
plaktheme
(@plaktheme)
Reputable Member
Joined: 5 years ago
Posts: 0
 
Posted by: @nashimbi

Hello Katrine,

I've just accepted the request

Carolina

Thanks for granting me the access Carolina,

I checked your store and the code is working fine on product page, were you referring to collection pages too ?

Katrine | Technical support at Plak, Scrowp & Vantout
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as a Solved Solution


   
ReplyQuote
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

Oh wow it did became big! yes I was wondering how to change price in collection page as well.


   
plaktheme reacted
ReplyQuote
plaktheme
(@plaktheme)
Reputable Member
Joined: 5 years ago
Posts: 0
 
Posted by: @nashimbi

Oh wow it did became big! yes I was wondering how to change price in collection page as well.

In order to change the product prices separately on the collection pages and on the featured product on homepage, add the below codes on homepage.css and on theme.css

 

/* when there a regular + sale price
/* regular product price */
.product-card .price-item--sale {
font-size : 25px !important;
font-weight : bold !important;
/* crossedout product price */
}
.product-card .price-item--regular {
font-size : 28px !important;
font-weight : bold !important;
}

/* when there is a regular price only */
.product-card .price-item--sale-only {
font-size : 28px !important;
font-weight : bold !important;
}

Kind regards,
Katrine

 

Katrine | Technical support at Plak, Scrowp & Vantout
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as a Solved Solution


   
Caro reacted
ReplyQuote
 Caro
(@caro)
Active Member
Joined: 3 years ago
Posts: 19
Topic starter  

It works great! Thank you for the great service! 😀 


   
ReplyQuote
Share:

Welcome to the Shopify Forum Community provided by Plak ThemeLLC, a place where you can discuss about eCommerce and Shopify, solve technical issues, get help with Shopify Design, Apps integration, Marketing, Facebooks ad, Google ads and more.

Before posting, we invite you to read and follow the forum rules | We also support any questions related to Free Shopify themes :Dawn, Express, Minimal, Brooklyn, Narrative, Supply, Debut, Venture, Boundless and Simple