Archived topic
footer issue
3 replies · Started by liz on July 15, 2021
Hi,
The footer is way too large [height]..How can I possibly shrink its size? The customizer isn't working at times- I can't see the changes right away as I edit-- I had to delete cache before I can see the changes. Also I have set footer width to full but it has remained unchanged..kindly help..Thanks.
Link to the website is in the private info field.
Hi Liza,
Your site is using a Block element for its site footer. You'll have to edit the site from there.
As for where specifically the vertical sizing is coming from:
The main container block that holds the footer elements has a padding top of 140px. Consider reducing that value.
As for the spacing on the size of the footer:
That's because of this CSS:
@media (min-width: 769px)
body {
padding: 30px;
}
It prevents any element within the page from going full width because of the 30px padding value on left and right. :D
Alvin..thank you.
No problem. :D