Site logo

Archived topic

FOOT FULL WIDTH NO TOTAL

3 replies · Started by JOSE on May 27, 2019

Viewing posts 1–4 of 4

HI,
I try to put the Foot Full with and I not get it. I go to Customize > Layout > Footer- Footer Width- full. Its better but it's a little spacer in left and right.
Thanks

Hi there,

in Customizer > Additional CSS you have this which is add a margin around the body:

@media (min-width: 769px) {
    body {
        margin: 0 30px;
    }
}

Change it to this to exclude the footer:

@media (min-width: 769px) {
    body {
        margin: 0 30px;
    }
    .site-footer {
        margin-left: -30px;
        margin-right: -30px;
    }
}

Perfect!!!
Thanks

You're welcome

This archived topic is closed to new replies.