Reduce distance between two Blocks in footer

Hello,

How can I reduce the space between two blocks in my footer?

Thanks a lot :slightly_smiling_face:

1 Like

Hi @dascha ,

This is David at SalesHunterThemes.

I read your problem and it seems that I need to analyze your website to provide the solution here.

Would you please share your website URL

if your website is password protected then also provide the password.

David | SalesHunterThemes team.

It can be done by reducing the margin and the padding. Can you share the store URL to give you the code for it

https://rowstitch.com/ I removed the password

https://rowstitch.com/ I removed the password

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.footer__content-top {
padding: 0;
}
.footer__content-bottom.scroll-trigger.animate--slide-in {
padding: 0;
}

1 Like

Hi @dascha ,

You can try to follow these steps:

Go to Online Store β†’ Themes β†’ Actions β†’ Edit code.

Go Assets folder β†’ theme.liquid file.

Add the following code in the bottom of the file above tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

David | SalesHunterThemes team

1 Like

Hi,

Just add the following code in your base.css file at the bottom

.footer__content-top {padding-bottom: 0 !important;}

.footer__content-bottom {padding-top: 0 !important;}

This will solve the extra spacing

1 Like