Footer width issue
-
Hi! After the last theme update, I noticed the same issue as this topic
https://wordpress.org/support/topic/footer-full-width-of-site/
On my website the footer is too wide just in the homepage, I suppose because it’s a business template page, while all the other pages work fine.
I set up a patch by adding these few css rules in my custom css and now the footer is working fine again
footer {
max-width: 1180px;
margin: 0 auto;
}
@media screen and (max-width: 1190px) {
footer {
width: 97%;
}
}
#page footer {
width: auto;
}but I’m not happy with this workaround and I’d like to solve the problem in a cleaner way. Can you help me?
Tip: by inspecting the html code of my homepage, I see the footer element outside the page block (div id=”page”), at the same level. In all the other pages the footer is inside the page div, so the css responsive rules work fine. Any idea about this beaviour?
Thank you in advance for your help
The page I need help with: [log in to see the link]
The topic ‘Footer width issue’ is closed to new replies.
