Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #370435

    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!

    #370437
    This reply has been marked as private.
    #370442

    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

    #370676

    That did the trick! Thank you Josue!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Featured images not showing on mobile’ is closed to new replies.