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
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 !
That worked, thanks!
Please login or Register to submit your answer