• Hi,

    The theme is very good and really easy to use, so I’d like to thank you first.
    I’m not that good with CSS and I’d like to remove the featured image & the title on top in single post, is it possible ?
    Thank you very much !

    +++

    • This topic was modified 8 years, 4 months ago by dickytheduck.
Viewing 1 replies (of 1 total)
  • Hi @dickytheduck,

    You can definitely hide the thumbnail from single posts using some custom CSS. ??

    To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    .single-post .entry-thumbnail {
        display: none;
    }
    
    .single-post .entry-content {
        padding-top: 120px;
    }
    
    @media screen and (min-width: 768px) {
        .single-post .entry-content {
            padding-top: 156px;
        }
    }

    If the above doesn’t work out for you, then please share a link to your site. I based the above on the theme’s demo but CSS can sometimes vary from site to site.

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘Remove featured image in single post’ is closed to new replies.