Strange padding between collection grid and footer on mobile

Anyone knows how to remove this blank space between the product grid and the footer? (MOBILE VERSION)

WARNING: For reference, you can see the product-grid on PC, where there is no padding and in addition to that the border-bottom of the products and the outline-top of the footer collapse, however there is still a single pixel border between them

Web: https://centralmrkt.myshopify.com
Code: 90210

2 Likes

Hi @davidvilaa

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width:750px){
.footer__content-top.page-width {
    margin-top: 0px !important;
}
}

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

1 Like