How do I make the font size smaller for the collection list labels for shopify dawn theme on mobile view only? Website URL: https://adlaudemdei.com/
Hi @pmltntc
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Hello @pmltntc
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Hi @pmltntc
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
@media screen and (max-width: 767px){
.collection-list-wrapper h3.card__heading a {
font-size: 11px !important;
}
.collection-list-wrapper .card__information {
padding: unset !important;
}
.card .icon-wrap {
vertical-align: middle !important;
}
}
This worked. Thank you!
Hi @pmltntc
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.


