Feature Image CSS Hide option.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #988301
    Fred Green
    Participant

    Hello I have the feature image coming on all my additional pages. I used the css code .post-thumbnail{
    display:none;
    }

    This is not working.

    #988357
    Andre Flores
    Moderator

    Hello, Fred!

    Try adding the following code under Appearance ->Customize ->Additional CSS:

    .has-post-thumbnail .post-thumbnail {
    	display: none;
    }

    If this still does not work, add an !important declaration to the CSS property:

    .has-post-thumbnail .post-thumbnail {
    	display: none !important;
    }

    Regards,
    Andre

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