Debut theme product title font size help (mobile view)

Hello everyone. I was able to customize many things by myself luckily however I cannot change the font size of the products on mobile view. How can I make it a bit bigger?

www.lapluie.store

Password : Yaggie95100

hello @Regntjejen

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media screen and (max-width: 768px) {
 #shopify-section-collection .grid .grid__item  {
     width: 100%;
 }

 #shopify-section-collection  .grid .grid__item .grid-view-item__image-wrapper.product-card__image-wrapper  {
        max-width: 100% !important;

 }
 #shopify-section-collection  .grid-view-item__image {
     max-width: 100% !important;
     max-height: 100% !important;
 }
 }
1 Like

Hii it’s nice to see you again. Thanks for the reply.

However it just changed my grid. Font size of the product remains same but i see 1 product per row instead of 2.