Hi, I am working with single blog post with small preview image and all looks good on PC, but the featured images do not show up on mobile device. Testing with iPhone 6. What is strange is i can change the blog style setting to single post with BIG image and they show up.
Not sure if it is related, but i have this in quick css: .post-meta-infos { display: none; }
added to hide author, etc.
Any suggestions? Could that code be blocking images too?
Thanks!
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
.single .post .blog-meta {
display: block !important;
}
.single .post .entry-content-wrapper {
clear: both
}
}
Cheers!
Josue
That did the trick! Thank you Josue!