Homepage Spacing on Edin

  • Hello!

    I am currently finishing up a wordpress site using the edin theme with a premium plan, and I am having a homepage spacing issue. It seems like there is some blank space between the menu and my content on the homepage. It may be there for a featured image? Regardless, I’d like to minmize the blank space, if not just getting rid of it using CSS or another method. Possible? Site I am working on is https://sandyspringscc.wordpress.com/.

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

  • hi,

    Can you try this CSS customization:

    .without-featured-image {
    display: none;
    }

    ?

  • Hi there,

    That section of the page is intended for the content you add to the front page itself, also known as the “Hero content” on a theme like this that shows multiple front page sections.

    You can use this CSS code to hide that section:

    /* Removes hero content area from front page */
    div.hero {
    	display: none;
    }

    The code @kosiew provided above should also work, but that might also hide content on other pages/posts without featured images. With CSS it’s always best to be as specific as possible.

  • The topic ‘Homepage Spacing on Edin’ is closed to new replies.