Re: How to reduce space between footer and site links

Solved

How to reduce space between footer and site links

baileyymans
Shopify Partner
11 0 3

I have a massive gap between the bottom of the text in my site footer and the site links.

 

Is there anyway to reduce this? I can't see about padding in the settings.

 

Theme Dawn 13.0.1

Site: www.posablecam.co.uk
Password to access: calleo

 

Screenshot 2024-04-08 at 18.07.20.png

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3081

This is an accepted solution.

Hi @baileyymans 

Check 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:

 

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

 

And Save. 

Result:

Made4uoRibe_0-1712602479953.png

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 4 (4)

Sweet_Savior_3
Shopify Partner
1376 104 149

Hello @baileyymans 

 

Welcome to Shopify Community.

 

Please add below CSS in theme.liquid above </head> tag.

<style>
.footer .footer__content-top {
    padding-bottom: 10px !important;
}
.footer .footer__content-bottom {
    padding-top: 0;
}
</style>

 

OUTPUT:

Sweet_Savior_3_0-1712596557043.png

 

Thanks

Don't forget to like and accept the solution to help others store owners.
Looking for an expert or Have any queries ? Send query to the Inbox
Coffee Tip ? Pay to shopify.dev.34@gmail.com
From Less To Further !!!
baileyymans
Shopify Partner
11 0 3

Asad-Mahmood
Shopify Partner
452 80 91

Go to your online store -> customize -> settings -> custom CSS and paste this code there

.footer__content-top {
    padding-bottom: 0px;
}
.footer__content-bottom {
    padding-top: 2rem;
}
If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




Made4uo-Ribe
Shopify Partner
10211 2427 3081

This is an accepted solution.

Hi @baileyymans 

Check 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:

 

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

 

And Save. 

Result:

Made4uoRibe_0-1712602479953.png

 

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.