Is it possible to make a picture not fill the width in mobile version?
-
Is it possible to make a picture not fill the width in mobile version?
-
You could give your image a class like "mobile-custom-width".
(hover over your image in the gridder and click the class button)And then you could use this CSS in "Lay Options" -> "Custom CSS & HTML" -> "Custom CSS for Mobile Version":
.mobile-custom-width{ width: 60%; margin-left: auto; margin-right: auto; display: block; }
-
Sweet baby jesus! Thanks Armin