I am trying to edit my product title to make it smaller, as on mobile it is way too big.. but I can’t seem to get it to work.
My store link is - https://lottewohnen.com/
Would appreciate any help
I am trying to edit my product title to make it smaller, as on mobile it is way too big.. but I can’t seem to get it to work.
My store link is - https://lottewohnen.com/
Would appreciate any help
Hi @cc18 ,
You can try the following.
@media only screen and (max-width: 750px) {
.product__title h1 {
font-size: 30px;
}
}
Please add below css code in bottom of base.css file
.product__info-container h1 {
font-size: 30px !important;
}
Thank you.