My 'featured collections' on homepage are being cut off on the left in mobile view

We use the timber theme. Our website is www.drivercam.co.nz

Recently we have found that our featured collections are being cut off on the left hand side when viewed on mobile.

What code can I use to correct this?

Paste this code into “Theme settings” => “Custom CSS” in Customize:

main > .grid-uniform {
  margin-left: 0;
}

please add this css to the very end of your timber.css file and check

shopify admin->online store->themes->edit theme code->assets->timber.css

@media screen and (max-width:749px){
.grid-uniform{margin-left: 0;}
}

add this css code in your theme customize > theme settings > custom css or directly inside your base.css file:

@media only screen and (max-width: 479px) {
  .grid, .grid-uniform {
    margin-left: -15px;
  }
  .grid__item {
    padding-left: 15px;
  }
}

but recommend page builder i’m using ecomposer making auto mobile responsiveness, relieve more

Please add this code to Custom CSS of that section

.grid-uniform { margin-left: -15px; }

Best regards,
Dan from Ryviu: Product Reviews App

Thank you very much for taking the time to assist

1 Like

Thank you very much for taking the time to assist, this worked so appreciated. Have a great day

1 Like

Thank you very much for taking the time to assist

1 Like

You are almost welcome!