Images on Mobile iPhone Needs to be Fixed

  • Unknown's avatar

    Hello,

    On mobile, the images need to be resized. Is there a way to have the picture take up the majority of the width of the screen with the title underneath?

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi again,

    Try this code, I think it works at all screen sizes.

    When using @media css to target specific screen sizes, the order does matter so @media (max-width: 1000px) entries should be above @media (max-width: 900px), etc. This code should work at the end of your css file unless you have a lot of other customizations.

    @media (max-width: 767px) {
    .blog article:not(.apostrophe-featured) .entry-header {
    width: 100%;
    float:none;
    padding-top: 5px;
    }
    .blog article:not(.apostrophe-featured) .entry-thumbnail {
    width: 100%;
    float:none;
    }
    }

    :)
    arlen

  • Unknown's avatar

    Perfect thank you so much! It looks great!

  • The topic ‘Images on Mobile iPhone Needs to be Fixed’ is closed to new replies.