How to remove white box under Featured image

  • Unknown's avatar

    Is it possible to remove the white space (where text would usually go) from underneath the featured image?

    I just want the whole image to take up the page. Unless there is a theme more fitting for what I need?

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    My assumption would be that you don’t want to remove the content area from everywhere. Are there specific pages you wish to do this to? The following removes the content area from the home page, but leaves every other page and post alone.

    .home .entry-content, .home .entry-footer {
        display: none;
    }

    Let me know where you wish to remove the content and just leave the image, and I would be more than happy to help with that.

  • Unknown's avatar

    Hi!
    Yeah that has removed most of the white space at the bottom of my homepage. But there is still a small white space. I just want the front page to be the image and the navigation bar.

    Thanks!

  • Unknown's avatar

    Ah, there was a bottom padding on the article section. Add the following.

    .home .hentry {
        padding-bottom: 0;
    }
  • The topic ‘How to remove white box under Featured image’ is closed to new replies.