Hey,
I would like to reduce the letter spacing on the price on the homepage. Does anyone know how to code it?
My website is brokenmind.com PW: TESTX
Thanks in advance
Hey,
I would like to reduce the letter spacing on the price on the homepage. Does anyone know how to code it?
My website is brokenmind.com PW: TESTX
Thanks in advance
This is PageFly - Free Landing Page Builder. I would love to provide my recommendations for your store based on 6 years of providing solutions for about 100.000 active Shopify merchants.
Regarding your concern about to change the letter spacing of the product price. Please help me to add this code this your base.css file, and follow these steps to achieve that
Step1: Online stores > Themes > Edit code > Search file base.css
Step2: Paste the code at the very end of the file:
.card-information .price {
letter-spacing: //px !important;
}
Please help me to add your value in //px for example you want it 2px so the code will be
.card-information .price {
letter-spacing: 2px !important;
}
In case you dont want it anymore, just delete that only. Hope this help
If you feel my answer is helpful, like it or mark it as a solution. Let me know if you have any questions.
Best regards,
PageFly
Hi @drew23 ,
Go to Assets > base.css and paste this at the bottom of the file:
.card__information .price {
letter-spacing: .05rem !important;
}
Hope it helps!