Support » Theme: Twenty Fourteen » Removing Feature Image from Post but keep on Grid

  • Because the feature image doesn’t always fit the grid and I’m not happy with the way they look in the post, I’m wondering how I can set a feature image for the grid that I can crop to the right proportions for the grid, but not have that huge image and block of background on the post. I would like to simply add images to posts as I do them.

    I am working in a child theme

    site: GenealogySherlock.com

Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi, to hide the featured image on single post pages in Twenty Fourteen, add the following to your child theme CSS.

    .single .post-thumbnail img {
        display: none;
    }
    .single .site-content .has-post-thumbnail .entry-header {
        margin-top: 0;
    }

    The second rule is to space the content down a little.

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Feature Image from Post but keep on Grid’ is closed to new replies.