Need To Remove White Bar At Bottom of Page

I’m just starting to develop a new site at https://plantbest.com/ca/

There is a white bar near the bottom of the page and I can’t figure out what it is to get rid of it. Would appreciate your help.

Many thanks!

Support Access is granted.

  • JMorris
    • I do geek stuff

    Hello Mary,

    I hope you are well today.

    Doing a quick check of the CSS, I found what is causing that white bar at the bottom…

    .separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .one-container .container, .separate-containers .paging-navigation, .inside-page-header {
    color: #000000;
    background-color: #ffffff;
    }

    If you either comment out the background color, or change it to the following in your Custom CSS, this should resolve the problem.

    .separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .one-container .container, .separate-containers .paging-navigation, .inside-page-header {
    color: #000000;
    background-color: inherit !important;
    }

    Let us know if this takes care of your issue.

    Best regards,

    James Morris