Gabriel M
asked 9 years ago

I wanted to stop the large Featured Image from appearing under post titles on single posts, so I added this code to style.css:
 
.single-post .entry-thumbnail {
    display: none;
}
 
But when I do that, it also removes the image from DW Focus: Recent News widget in the single post sidebar. How do I fix this problem? I want the image to show in sidebar but not under post titles.

2 Answers
DominicStaff
answered 9 years ago

To resolve this issue, you can add the following code to the style.css file:

.single .site-content>.hentry .entry-thumbnail { display: none; }

Hope this helps !

Gabriel M
answered 9 years ago

That worked, thanks!

Powered by DW Question & Answer Pro