• Hi,

    How can remove the white space area at the footer of this page.
    If i have to keep the pwered by wordpress then ok but there is too much white space below the blue.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • You can apply this custom css to your theme customization at: “Wp-admin>Appearance>Customize>Additional CSS”

    Code:

    .site-inner {
      height: 90em;
    }
    Thread Starter jagguy2

    (@jagguy2)

    Hi,
    The code has left this area as a large black space instead of white which I dont want.
    .site-inner {
    height: 90em;
    }

    How can I have the page finish at the end of the blue area?

    You can’t finish at the blue area because you have some kind of black square surrounding the whole site, so you’ll still see its borders.

    But you can remove that exceding black area with the following code:

    .entry-content {	
      max-height: 1590px;
      height: 1590px;
    }
    Thread Starter jagguy2

    (@jagguy2)

    ok thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘removing white space at the footer area’ is closed to new replies.