• Hello,

    I’m trying to remove the free-space below my site’s copyright in the footer. I was successfully able to remove the top padding in the css but for some reason I can’t do the same with the bottom portion. Is this space somehow fixed there or part of a different class/id?

    What I have so far:

    footer#site-footer {
    	padding: 0.9rem;
    	border-bottom: 0; /*this doesn't do anything*/
    }

    Site link

Viewing 1 replies (of 1 total)
  • If you go a few more levels deeper into your footer code you will come across the <section> tags which have 44px bottom-margins being applied to them.

    @media screen and (min-width: 800px) {
         .site-footer .widget-area {
              margin-bottom: 0;
         }
    }

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘[Make] Can’t remove free space from footer’ is closed to new replies.