I’m trying to make the product price bold on my Shopify website using custom CSS code.
Does anyone know what custom CSS code would work to make this possible?
I’m using a bundle app from the Shopify store that allows me to enter custom CSS code.
I’m trying to make the product price bold on my Shopify website using custom CSS code.
Does anyone know what custom CSS code would work to make this possible?
I’m using a bundle app from the Shopify store that allows me to enter custom CSS code.
Hello @alongsideyou
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Hello,
Please share “Store URL”
Thanks!
Hey @alongsideyou
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
Thank you!
Thank you
Thank you!!
Hey @alongsideyou
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
Hello @alongsideyou
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->section-main-product.css
add this code at the end of the file and save.
.product__title>*
font-weight: 900;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello,
dd.price.price--end {
font-weight: 900 !important;
}
Thanks!