Hello guys, on computer, the collections heading sizes look good, how can I fix that on mobile version? I am attaching screenshots to see the difference.
Hi @igorsingaevskii ,
I am assuming you are referring to Rugs and Mats. If so, just follow the instructions below.
- Go to Admin > Online store > Themes > Actions > Edit code
- Open the base.css file under the Asset folder
- Add the code below.
@media only screen and (max-width: 481px) {
.card__heading {
font-size: clamp(18px, 4vw, 20px) !important;
}
}

