admin管理员组文章数量:1130349
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;
}
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;
}
本文标签: Images showing up in Post Editorbut not in Published Post
版权声明:本文标题:Images showing up in Post Editor, but not in Published Post 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749165912a2326176.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论