Hello, How can I make the product page price bold and bigger in mobile view as it was too small. tried the css etc. and it didnt work

Hello, How can I make the product page price bold and bigger in mobile view as it was too small. tried the css etc. and it didnt work

Hey @alalizaa
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hi @alalizaa
Thanks for your question,
Would you mind sharing the page link to check on it for you?
Thank you.
Hi @alalizaa
You can follow the instruction here to round your collapsible row:
Go to Shopify > Theme > Customize > open Custom CSS
Copy and paste this codes to the section > Save. You can adjust the font weight ( bold) and font size as requested
@media (max-width: 767px) {
.t4s-product__info-container .t4s-product-price {
font-size: 24px
}
.t4s-product-price.t4s-badge-sale ins {
font-weight: 600;
}
here is the result :
Hey @alalizaa
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed