Hi,
on My product page on mobile the product title disappears behind the image. How can I add white space and increase the font size on mobile only? I’m using the Brooklyn theme
Hi,
on My product page on mobile the product title disappears behind the image. How can I add white space and increase the font size on mobile only? I’m using the Brooklyn theme
Hello There,
Please share your store password.
So that I will check and let you know the exact solution here.
.rio-media-gallery {
margin-top: 20px !important;
}
Add this code in the bottom of the timber.scss file.
This worked!! Thank u so much!
How can i increase the font of product titles on mobile only?
Hello There,
@media only screen and (min-width: 750px){
.product-single__title {
font-size: 25px;
}
}
Hi, this changed the size of my title on desktop..
@media only screen and (min-width: 600px){
.product-single__title {
font-size: 25px !important;
}
}
@Ellen13 try this code
Again only on desktop :s
@media only screen and (max-width: 600px){
.product-single__title {
font-size: 25px !important;
}
}
Thank you so much!
@Ellen13
Kindly like our Solution if helpful.
Please add the following CSS code in your assets/productwiz-rio.css bottom of the file.
@media screen and (max-width: 591px){
.pwzrswiper-container {margin-top: 2em;}
}
Please add the following CSS code in your assets/timber.scss.liquid bottom of the file.
@media screen and (max-width: 591px){
.product-single__title {font-size: 2.875em;}
}
Thanks!
Some here with same problem!
Problem finish!