Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)