Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1423068

    Hey team

    On my site I have posts like this that are generated for every event on my calendar.

    I need a method to make just the smaller featured image at the top of the post to disappear. This method should be applicable across the site please.

    Cheers

    #1423371

    Hey KMCHOUSTON,

    Thank you for the inquiry.

    You can add this css code to hide the image.

    #top .fullsize .template-blog .blog-meta .attachment-square.size-square.wp-post-image {
        display: none;
    }
    

    To completely remove the square container, use this css code instead.

    #top .fullsize .template-blog .blog-meta {
        display: none;
    }
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.