Hi,
I'm trying to remove the large image you see when looking at a blog post (
[Links visible only for registered users]). I've tried this code .single .wp-post-image { display: none; } but that also removes the images for related posts.
What code can I use?
Comments
.single-post .single-photo-wrapper { display: none; }yes, you can remove them with below css:
.image_frame .image_wrapper .image_links { display: none !important; }