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?
The 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;
}