Want to adjust the menu in the footer section ( Shopify Savor Theme )

Hello Everyone!

I am using Shopify Savor theme. I want to adjust the menu in the footer section. I have added an image below and I want to keep it exactly as the image. Can you bring the Quick Shop line and support line closer in the footer. Please help me.

Store: https://svelteclothes.myshopify.com/

password: Admin

Try this in Section settings-> Custom CSS:

footer .menu__heading {
  padding: 0;
}

I added the code but it’s not working.

I checked – no, you did not.

It is working in mobile mode, not in desktop mode. I want to fix it only in desktop mode. Not in mobile mode.

Add a media query like this:

@media (min-width:750px) {
  footer .menu__heading {
    padding: 0;
  }
}

It still does not work……..

It can’t work if it’s not there:

1 Like