I’m trying to change my product title font to be ‘regular’ rather than ‘bold’. I have tried to play around with the font families, but this then changes fonts elsewhere on the site.
Add the following CSS to your stylesheet.
you may found it on assets/stylesheet.scss.liquid OR assets/stylesheet.css
.product__title{
font-weight: 400 !important;
}
You can apply any value from 300 to 800 as per your choice.
For further assistance, you can contact me.
This will be a really simple fix for me
This has fixed the issue on each product page, thank you! However, the product title text is still bold for items on the homepage and also across all collection pages.
Do I need to add further code to ensure these text changes appear on the homepage too?