Since my collection name is a bit long..there are line breaks in my collections page list
Hence I need to reduce the text size to eliminate line breaks in m obile view (Sense Theme)
Since my collection name is a bit long..there are line breaks in my collections page list
Hence I need to reduce the text size to eliminate line breaks in m obile view (Sense Theme)
Hey @david09
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @david09
You can try this one.
@media only screen and (max-width: 749px){
h3.card__heading {
line-break: auto;
font-size: 16px;
}
}
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!