Tagged: responsiveness
I’ve created a page using galleries on either side a text block. The images are distorting as the page degrades from desktop through tablet/mobile. Is this an issue with the way I’ve laid out the page?
many thanks
Simon
Hey Simon!
Add this to your custom CSS.
#top div .avia-gallery img { width: auto !important; height: auto !important; }
Best regards,
Elliott
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 768px) {
#top div .avia-gallery img {
width: 100% !important;
}}
Regards,
Yigit
brilliant – thank you very much!!