Hello Community!
I need help changing the product title font size on shopify’s refresh theme.
I have tried the following code on section-main-product.css, but it did not work.
.product__title { font-size: 30px; }
I appreciate your help and time!
Hello Community!
I need help changing the product title font size on shopify’s refresh theme.
I have tried the following code on section-main-product.css, but it did not work.
.product__title { font-size: 30px; }
I appreciate your help and time!
Hi @XYZX ,
Try this code instead.
div.product__title h1 {
font-size: 30px;
}
It worked!! Just one more question: how can I set that the size on mobile is different to desktop?
Thanks for your help! Much appreciated!!! ![]()
You can use the code below.
@media only screen and (max-width: 750px) {
div.product__title h1 {
font-size: 20px !important;
}
}