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! ![]()
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;
}
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
Thanks for your help with that! Here is the preview link:
1 Like
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!
