Footer spacing

Hi,

Can anyone show me how to reduce the space between lines in footer section (mobile view)

Pls check: https://189ee3-2.myshopify.com/

1 Like

Hi @collins276

Check this oe.

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 screen and (max-width: 749px){
.footer-block__details-content .list-menu__item--link {
    padding: 0rem !important;
}
.footer-block__heading {
    margin-bottom: 1rem;
}
}

And save.

Result:

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

1 Like

hi you can place this code at end of theme.liquid and see if it fixes mobile footer.

1 Like