Archived topic
Wordsmith H1 issue
3 replies · Started by Sylvia on June 1, 2022
Do you happen to know how to make the product title on the product page in the store not bold?
I figured out this is H1 as title. But its not quite the same as the price.
I changed the price with some custom css, because the price was also bold.
But i dont know how to handle this with the product title.
Hi Sylvia,
It is using H1's font-weight which is set at customizer > typography > h1:
https://www.screencast.com/t/NjvQtXSQq
You can use this CSS, just change the value of 100:
h1.product_title.entry-title {
font-weight: 100;
}
Perfect, i changed it! Thank you so much!
You are welcome :)