Hello,
does somebody know How to limit the product title to 1 line on mobile?
Thank you!
url: aliudclothing.com
Hello,
does somebody know How to limit the product title to 1 line on mobile?
Thank you!
url: aliudclothing.com
do you want to hide the remaining name which is on the second line?
No, I want to make the Font smaller, so everything fits into the first line.
Thank you.
use below css code in your theme.scss.css file refer to the screenshot below
@media screen and (max-width: 600px){
.product-single__meta h1.product-single__title {
font-size: 24px !important;
}
}