How can I reduce the size of the product title in the product grid on mobile devices?

How can I reduce the size of the product title in the product grid on mobile devices?

Hannes09
Tourist
5 0 1

I would be happy about a simple custom css code! By the way, I use the Shrine Theme.

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

Hi @Hannes09 

Would you mind to share your store URL? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Hannes09
Tourist
5 0 1

---

Made4uo-Ribe
Shopify Partner
10036 2387 3013

Thanks, do you mean the product collection right? 

Made4uoRibe_0-1722894264743.png

 

If it is, check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 676px){
div#ProductGridContainer h3 {
    font-size: 15px;
}
}

 

And Save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Hannes09
Tourist
5 0 1

Thanks, but I have just found a similar solution with the help of another post on this platform... }
@media only screen and (max-width: 768px) {
h3 {
font-size: 13px !important;
font-weight: bold !important;
}
}

Made4uo-Ribe
Shopify Partner
10036 2387 3013

Okay, but you are calling all h3 on the store. If you like only to change the title on the product grid. You need to call it specifically. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.