Site logo

Archived topic

spacing between copyright line and bottom page

5 replies · Started by Marius on March 18, 2020

Viewing posts 1–6 of 6

Hi,
Please help me to remove space betwewn copyright and bottom page. I have lite text on some page and white color apperar to bottom like in example page. T have no plugin instaled except gp premium. I reset wp and i had seme result.
Thanks

Hi there,

Are you referring to this space here?
https://www.screencast.com/t/iLa209phV

It would only happen when there is not enough content to fill the height of the browser.

Will you be having pages like that?

Let me know :)

Exactly. No content to fill height of browser. I have 28 inches monitor.

Try this CSS if this is happening on every page:

.site-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

If you need to target specific pages that don't have enough content, then it would be this:

body.page-id-xxx  .site-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Thank you!

No problem :)

This archived topic is closed to new replies.