• I am using free theme called Themify Base but I don’t know how to hide the featured image that appears above every post title.

    Here’s what I am talking about:

    Please help..

Viewing 5 replies - 1 through 5 (of 5 total)
  • I was just trying to find the answer to this too! I’d love to be able to hide them from both the main page and within the post page – or at least be able to change the size of them so they match the other images.
    Thanks for any help:)

    featured images dosn’t show up in Hueman theme.

    #Hi all.I have use?Hueman?theme in my blog but the featured images dosn’t show up in my posts.I try alot to search the solution for this problem but i didn’t find any solution.Please can someone tell me what should i do to solve this problem.Thank you.

    Thread Starter xkrishna.px

    (@xkrishnapx)

    I actually found a solution myself!

    1. Ok so first go on any of your post where the featured image appears above the title.

    2. Then right click on the featured image and click on inspect element (this will work only with google chrome)

    3. The code of the featured image will be highlighted. Mine was something like this.. figure-class = ‘post-image’

    4. I copied the ‘post-image’ because that was what they called the featured image. And then I looked for this piece of code in my editor in Stylesheet (style.css)

    5. I found it and below that code I found I entered
    .post-image {
    display:none;
    }

    6. Yours could say post-thumbnail instead of post-image. So you can find that out in the inspect element stage.
    If you are using some other theme, define the class of the image inside your post and replace it with “.post-image”.

    Your code could look like:
    .post-thumbnail {
    display:none;
    }

    OR

    .featured-image {
    display:none;
    }

    It depends on what class your theme uses. Find it out using the inspect element tool and replace it in the code above.

    Oh great! Thanks so much I’m going to go and try this ??

    Oh nice nice thank you!

    Mine was

    .single-thumb {
    display:none;
    }

    Thank you so much!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hide Featured Images on post on Themify Base (WP Theme)’ is closed to new replies.