Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #462045

    Hi,
    Your themes are great! I’m trying to adjust the max-width of the main image on this page for mobile portrait view and it’s not adjusting. Am I right to assume that the css should be:

    /** Mobile Portrait **/
    @media only screen and (max-width:320px) {

    .wp-image-162 {
    margin-bottom: 0px!important;
    max-width: 50%!important;
    height: auto!important;
    }

    Thanks for your help!

    #462152

    Hey connect4consulting!

    Please try this instead:

    @media only screen and (max-width:767px) {
    .wp-image-162 {
    margin-bottom: 0px !important;
    max-width: 50% !important;
    height: auto !important;
    }
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.