I am trying to add three images by just inserting them into the post here: /
Although I can see the images perfectly in my Media Library as well as in the post editor itself, somehow they don't show inside the actual post (only their captions).
I have never encountered this issue before, would someone please be so kind to assist me?
I am trying to add three images by just inserting them into the post here: http://www.ihts.nl/wie-wij-zijn/
Although I can see the images perfectly in my Media Library as well as in the post editor itself, somehow they don't show inside the actual post (only their captions).
I have never encountered this issue before, would someone please be so kind to assist me?
Share Improve this question asked Nov 20, 2018 at 15:42 RosaRosa 32 bronze badges 2- what are the image names? – RiddleMeThis Commented Nov 20, 2018 at 16:07
- For instance, this is the image that should show up above 'Theo Poort': ihts.nl/wp-content/uploads/politie.jpg – Rosa Commented Nov 20, 2018 at 16:19
1 Answer
Reset to default 1The image is there. If you view the source you can see it. If you inspect the image in your browser you can see its hidden with CSS and set to display:none;
This is the style your theme is applying.
.single .entry-content img {
display: none;
}
You will need to override that style with your own.
.single .entry-content img {
display: block;
}