Viewing 5 replies - 1 through 5 (of 5 total)
  • @helpwp1 I am sorry for the delay in response for holidays.

    Your posts may present on a special page that requires specific CSS selector.

    Can you provide a link to your page?

    Regards,
    Kharis

    Thread Starter helpwp1

    (@helpwp1)

    It happens on any post. Single post. The featured image is hidden on desktop but not on mobile.

    Thread Starter helpwp1

    (@helpwp1)

    And thank you for the reply, no problem about the delay due to holidays!

    @helpwp1 thank you for getting back.

    Try this CSS code:

    @media only screen and (max-width: 999999px) {
      .single-post .entry-header img {
        display: none !important;
      }
    }

    In case that code doesn’t give any changes, please provide a link to your post page for direct inspection.

    Regards,
    Kharis

    Thread Starter helpwp1

    (@helpwp1)

    It is fixed now. I used

    /* Remove featured image from posts */
    .single .entry-thumb {
            display: none !important;
    }
    

    I think the problem was the order of the css… when I had it at the top of the css code something must have been overriding it, because when I moved it to the end of the css, it started working.

    Thanks for your help.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Hide Featured image on Posts (Mobile)’ is closed to new replies.