Home Forums Claremont Pro Remove image in post view

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9794
    Boris Gutierrez
    Participant

    I like having the featured image in the blog post page, however, I don’t want the featured image to show when I open up the post.  Is there a way to do this for every some posts?

    #9826
    Andy
    Keymaster

    Hi Boris,

    Sorry for the late reply.

    This code added to ‘Customize’ > ‘Additional CSS’ will hide the featured image on all the single posts

    .single .entry-thumbnail {
        display: none;
    }

    For a specific post use this, where “1728” is the post ID:

    .single.postid-1728 .entry-thumbnail {
        display: none;
    }
    #9916
    Boris Gutierrez
    Participant

    Works great.  Thank you

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove image in post view’ is closed to new replies.