Hello there!
Can anyone tell me how to reduce the height of this footer block with the policies and copyright, so that the top and bottom margins/paddings are the same, just smaller? I’ve marked what I mean in the screenshot.
When I try to reduce the bottom padding of the footer in the theme editor, for some reason this strip disappears altogether.
I would really appreciate any help!
Website link: Custom Oil Paintings – DrawWithDi
Use this in assets/base.css :
.footer__content-top,.footer__content-bottom{padding-block:8px!important}
Had to fix this on a client build, it targets Dawn’s footer blocks (keeps the bar visible while shrinking space).
Moeed
November 17, 2025, 4:29pm
3
Hey @DRAWandCARE
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above </ body> tag
<style>
@media screen and (min-width: 768px) {
.footer__content-top.page-width {
padding-bottom: 11px !important;
}
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Please add this code to Custom CSS in theme settings
@media (min-width: 750px) {
.section-sections--19930542604388__footer-padding { padding-bottom: 24px !important; }
}
Hello, @DRAWandCARE
1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / base.css file and paste the code in the bottom of the file.
.footer__content-bottom {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.footer__copyright.caption {
padding-top: 0;
padding-bottom: 0;
}
.footer__copyright .policies-wrapper {
margin-bottom: 0.8rem;
}
You can adjust margin-bottom value as needed.
Thank You!