• Resolved breecrowder

    (@breecrowder)


    Just as the title says: I’m looking for CSS to accomplish this. As it stands, the white space is pretty thick. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Are you referring to this space on single posts?

    Freelance Editing Series Deciding What You Offer Bree Crowder 1 1

    If you use your browser inspector you can see that this space is coming from bottom margin on the entry-header element:

    Freelance Editing Series Deciding What You Offer Bree Crowder 2

    Why don’t you a try at removing that 30px of bottom margin and let me know if you get stuck. 🙂

    Thread Starter breecrowder

    (@breecrowder)

    Haha… I’m stuck. Looking for a CSS solution for this. I tried this, which hasn’t worked:

    /* Remove White Space Under Featured Images */
    .entry-header {
      border-bottom: 0px;
    }

    You’re very close, but the property you want is margin, not border. 🙂

    .entry-header {
      margin-bottom: 0;
    }

    Thread Starter breecrowder

    (@breecrowder)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove White Space Between Featured Image and Body Text’ is closed to new replies.