Multicolumn Section space between image heading mobile only

I added some code to my store to make the banners look better on mobile devices, but I did not notice what happened to my multicolumn section. The margin went super crazy and looks really bad now, is there a way to fix this, easily? Desktop view is perfect.

shoplivingsimply.com

1 Like

Hi @LIVINGSIMPLY

Would you mind to share your Store URL website? with password if its protected. Thanks!

shoplivingsimply.com

1 Like

Thank you for the information. Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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: 600px) {
    .media.media--transparent.media--square {
        padding-bottom: 0px;
    }}
  • And Save.
  • I hope it help.

Yes, it helped the one multi column, but not the other (section right below)

1 Like

Oh, Im only relaying on the image that you attach.

Try this one. Same Instruction.

@media only screen and (max-width: 600px){
.media.media--transparent.media--adapt {
    padding-bottom: 0px !important;
}
}

Please dont forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you, I also sent you an email.