The theme is great but the product name is huge on the top of the product detail page. Is there an easy way to change the text size.? Can’t seem to find it anywhere in the theme backend…..thanks!
The product title is given an H1 attribute. You would have to change the H1 attributes. However, this will change it theme wide. Correct me if I am wrong though.
h1 {
font-size: 34px;
line-height: 1.1em;
margin-bottom: 14px;
}
Hi,
Have you tried using Michael’s code? can you post the link to your website please?
Regards,
Josue
Hello!
Those titles are h3, this code will increase their font size:
.product h3 {
font-size: 24px !important;
line-height: 32px !important;
}
Best regards,
Josue
Hello!
Yes, that code should be put on Quick CSS, however that is not what you want, use this instead to change the size of the H1 tags:
h1.product_title{
font-size: 42px !important;
}
Cheers!
Josue
Great thanks!!!
Glad we could help, you are welcome.
Best regards,
Josue