Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey! I need to change the size of the titles of the products on my featured collection page for mobile view, because for PC view everything work's fine. My theme is Dawn.
Here is the screenshot so you can see that the titles are really small, I need to fix that. Looking forward to someone helping me haha
Solved! Go to the solution
This is an accepted solution.
Thanks for the info, i understand your frustration I check it how small it is. Check this one then.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.card__heading a {
font-size: 25px;
}
}
And save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Would you mind to share your store URL? Thanks!
This is an accepted solution.
Thanks for the info, i understand your frustration I check it how small it is. Check this one then.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.card__heading a {
font-size: 25px;
}
}
And save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe Thank you for this! Fresh Dawn v14 install and this worked flawlessly.
Welcome, that good to hear it worked in your store.