Hey, I would like to know how I can change the product name font-size on collection pages. I would appreciate any help with this! Thanks in advance.
My store: https://bellevodesign.com/collections/sheets?page=2
The issue:
Hey, I would like to know how I can change the product name font-size on collection pages. I would appreciate any help with this! Thanks in advance.
My store: https://bellevodesign.com/collections/sheets?page=2
The issue:
I managed to reduce the font-size on desktop view but I would still need help to change the font-size on MOBILE view if anyone knows how to fix this I would really appreciate it!
Hi @bellevo ,
Step 1: Go to Shopify Admin β Online Store ->Theme β Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Hi @bellevo
Iβm glad youβre able to adjust the font size on desktop by yourself. Now, Iβll guide you through doing the same on mobile.
Step 1. Go to Admin β Online store β Theme > Edit code
Step 2. Find the file base.css. Add the following CSS snippet to the end of the file.
@media screen and (max-width: 750px) {
.full-unstyled-link {
font-size: 10px
}
}
You can adjust 10px to a different number if you want the text to appear larger or smaller.
The result I achieved.
If it helps you, please like and mark it as the solution.
Best Regards
@media only screen and (max-width: 750px) {
.card__heading.h5 a {
font-size: 12px !important;
}
}