Archived topic
Footer background colour not extending full width
3 replies · Started by Gary on July 20, 2018
Hi,
In settings I have set footer width to full which I understand should mean that the background colour of the footer extends the full width of the screen. On this domain however there seems to be white border left and right and I have no idea why. On other domains I've not had this issue with GeneratePress which is why I've drawn a blank.
If you need to login to my domain let me know and I can give you access details.
Thanks
Gary
Hi there, with the Sider site there is padding on the body, so in additional CSS find this:
body {
padding: 0 50px 50px;
margin-left: 300px;
}
Delete the padding property.
Then add this rule, to put the padding back to the main content:
#page {
padding: 0 50px 50px;
}
Excellent, thanks. I don't want to put padding back in main content so will leave that part out.
Thank you.
Gary
Glad to be of help.