Archived topic
unable to get before_footer element space between footer out.
3 replies · Started by Jennifer Lepp on February 23, 2019
I'm using before_footer to place an image above the site-footer, and it's worker great - except that I can't make the space between the before_footer and site-footer go away.
I'm up to:
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}
.site-footer {
margin-top: 0; /* space between content and footer */
padding-top: 0;
}
custom CSS, but nothing seems to be working. Help?
Hi there,
Try adding this:
.full-width {
line-height: 0;
}
Let me know if this helps :)
Yer a genius. Genius, I tell ya.
Thank you!
line-height property is not easy to spot :)
Glad I could help!