How to Remove the White Space below the Footer in WordPress Site using CSS

I have my site here. I am using a wordpress WOO Theme named Canvas.
I can’t figure it out how to remove the whitespace below the footer.

This is a screen shot of the issue.

Read More

Q: What is the easiest way to remove the space using CSS that conforms with the website standards?

Related posts

Leave a Reply

5 comments

  1. I was having an issue where the footer would not sit at the bottom of my page correctly.

    enter image description here

    This is my first WordPress site, and may not be the “correctly accepted” fix among senior developers, but for me all I did was one CSS rule of:

    body {
       height: 0px !important
    }
    

    To give me this result

    enter image description here

  2. This error occurred to me as well when creating an elemetor footer in wordpress where I was running Astra theme with it’s theme customizer I had already put a simple text footer via widget option. Then I decided it is time to have a proper customized footer via elementor header and footer blocks so once I created this footer usually there is no error but this time there was a big white space below the footer in wordpress site.

    Solution was to go to footer page and click edit with elementor and then click all sections in my footer and in layout under edit section find the option called overflow and then from drop down select as hidden repeat for all sections in footer and click update after done. And viola big white space gone finally:)

  3. find you code on .footer you code will be like this,
    
    border-bottom: 1px #4C4C4C solid;
    background: #333;
    color:#999;
    

    replace this code with this one,

    border-bottom: 1px #4C4C4C solid;
    background: #333;
    color:#999 !important;
    overflow: hidden;
    

    this helped mine. hope for you too guys..