How to reduce spacing at the bottom of the footer

Hi everyone! I’m using the Shopify theme Prestige and trying to figure out how I can reduce the space at the bottom of the footer. Any help would be appreciated. Thanks in advance! :slightly_smiling_face:

1 Like

Can’t really know without seeing the page’s code but I think the theme footer div works with:

.Footer__Aside {
     margin-top: 0px !important;
}

@KyCarra

Please share your shop URL.

I haven’t made the page live yet.

I appreciate the help! Which section of the code would I copy this into?

Hi @KyCarra ,

Hard to help without link to your page/store.

Could you please follow this quick guide on ‘sharing a preview link’…
https://help.shopify.com/en/manual/online-store/themes/adding-themes#share-a-theme-preview-with-others

@KyCarra

Please share your shop URL.

Thanks!

Thanks for your help with that! Here is the preview link:

https://3doobn3h0eo4z14j-34286665866.shopifypreview.com

1 Like

@KyCarra

Please add the following code at the bottom of your assets/theme.css file.

@media screen and (min-width: 1140px){
.Footer__Inner+.Footer__Aside {
    margin-top: 0px !important;
}
}

Hope this works.

Thanks!

1 Like

That worked! Thank you so much, I really appreciate it!