Mobile problem

  • Unknown's avatar

    Hi,

    My blog works fine on computer screen, but featured images on articles scale out wrong when I use pad/mobile. Image size is huge on mobile screen. How can I fix this?

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

  • Unknown's avatar

    And to add some information for helpers.

    I’m using this CSS to make my images to fit screen better on computer

    .blog .hentry,
    .archive .hentry,
    .search .hentry {
    padding: 15em 0;
    }

    But this messes up the mobile screen scale

  • Unknown's avatar

    You can try limiting the change you are using above on screens wider than 1024px using a Media Query like this. This will switch things back for iPads starting at 1024px, which is a iPad in landscape orientation.

    @media screen and (min-width: 1025px) {
    .blog .hentry, .archive .hentry, .search .hentry {
        padding: 15em 0;
    }
    }
  • The topic ‘Mobile problem’ is closed to new replies.