Increase grid size

Hi, I would like to increase the size of the products on the slider by 30%, it seems like the images are really small on mobile, can anyone help?
THIS IS THE SECTION I’M REFERRING TO on my homepage - for mobile.

Thank you in advance!!
https://ynco-ny.com/

Hi @Daniel19901 ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/theme.css
  3. Add code below to end of file
@media only screen and (max-width: 768px) {
  body .grid-overflow-wrapper .grid__item {
    width: 50%;
    flex: 0 0 50%;
  }
}

I saw have a bug on desktop as well

You can add code below to fix as well

#shopify-section-template--22657255964964__text_columns_KULknp .page-width {
  clear: both;
}
1 Like