Different photo aspect ratio on mobile and laptop?

MickeSMickeS Registered Users Posts: 4 Big grins
Hi,
I can't find out how to change aspect of a photo for mobile. I want it to be different aspect for desktop and mobile. How can I do that?
Thanks!

Comments

  • MickeSMickeS Registered Users Posts: 4 Big grins

    Actually I find a way myself.
    I created two images in different aspect ratio and then hide one in mobil and vice versa..

    /* Hide image on Mobile */

    @media screen and (max-width: 737px) {
    .sm-user-ui .sm-page-widget-36951834 {
    display: none;
    }

    }

    /* Show image on Mobile */

    @media screen and (min-width: 737px) {
    .sm-user-ui .sm-page-widget-36952475 {
    display: none;
    }

    }

Sign In or Register to comment.