Shahryar h.n
asked 10 years ago

Hello DW!
I have a problem with awesome DW Gamez theme.Maybe this question is a useful answer to others than have the same Q.
I’d use following CSS code to remove Featured Images(FI) from post content.

.single-post .item-thumbnail {
    display: none;
}

it’s just worked for single page. but FI still show in home page content. this is my problem with this theme and HOW can i hide FI from home page with CSS?
I think CSS is a good way to hide this FI.
tnx.

  
  .single-post .item-thumbnail {
    display: none;
}
Shahryar h.n
replied 10 years ago

Oh shit.
Is there any way to disable “featured image” feature of this theme without using CSS Code?

above CSS code hide related posts images too! 🙁

1 Answers
DominicStaff
answered 10 years ago

Hello Shahryar ! 
If you want to remove the Featured images in the home page & single pages but they still display in the Related Posts section, you can replace your older code with new code:

      .home .hentry .entry-thumbnail img {
display: none;
}
 .single-post .hentry .entry-thumbnail {
     display: none;
}

Hope this helps !

Powered by DW Question & Answer Pro