Okay
  Public Ticket #651229
Manage Featured Image Placement
Closed

Comments

  • Kasy started the conversation

    I was able to get the featured image off of my individual blog posts by adding this to my custom CSS:

    .single-post .wp-post-image {
       display: none;
    }
    
    .post-featured-img {
      display: none;
    }

    This did make it where the featured image doesn't display in the blog and does show as a featured image on the homepage, but it removed as the featured image on the blog: http://www.annapurnadigital.com/blog/. Is there additional CSS I have to add to make sure it stays on the blog?

  •  8,992
    Tahir replied

    Hey,

    Use this instead:

    .single-post .wp-post-image {
       display: none;
    }
    
    .single-post .post-featured-img {
      display: none;
    }


    ThemeNectar Support Team 

  • Kasy replied

    That worked! Thank you!