Tagged: footer, full width
Hi there!
Just noticed the footer is no longer full width on many pages, but is on only one. Can you help identify the problem? Webpage addresses in private content.
Thank you!
V.
Hi Valerie!
It’s from this custom CSS in your child theme.
.html_header_top.html_header_topbar_active.html_header_sticky #top #main {
padding: 85px !important;
}
Regards,
Elliott
Hi Elliott,
Thanks for the quick response! The intent of this code was to pull the slider up to just under the border of the header, which it did. The other issue is that without this code, there is a horizontal area of white space with a border under it that I don’t want. I have links for a couple of screen shots in the private content.
I need to have the home-age slider at the bottom border of the header and no empty white space and border on the other pages. How would I do that while keeping the footer extent across the entire screen?
Regards,
Valerie
Hey!
It should be flush up against the header by default. You must have some other CSS which is interfering.
You can add this as a quick fix.
#main {
padding-top: 89px !important;
}
Regards,
Elliott
Thanks for the quick fix, Elliott! Worked great.