Archived topic
Images Missing in Posts
3 replies · Started by Matthew on January 8, 2020
We're just getting the blog portion of this site underway and, the strangest thing: images that are added to the post page via the Media Library do not show up in the actual published post. Featured images do show up in the archive. I've never run into anything like this before. Example: https://www.awarenessthatheals.org/new-strong-evidence-for-problem-based-learning/
Hi there,
you have this CSS in your child theme:
/* Hide in page post from displaying */
.size-auto, .size-full, .size-large, .size-medium, .size-thumbnail {
max-width: 100%;
height: auto;
display: none;
}
The display: none; property is the issue
Thank you. The reason that was added is to stop the featured image from displaying at the top of the page. I now realized it should have been: .single .page-header-image-single {display: none;}
Greatly appreciated.
In Customizer > Layout > Block --> Featured Images you have the option to disable the Featured Image just for Posts