Different photo aspect ratio on mobile and laptop?
MickeS
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!
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!
0
Comments
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;
}
}