Hi, I would need some help on my website with the logos displayed here. On desktop it’s fine, but I would like to set a maximum width on mobile view because the images look way too big on mobile. Is that possible ? Thank you in advance.
Kind regards,
Oasure
Hey oasure,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
#partenaires .avia_image {
max-width:50% !important;
}
}
Best regards,
Rikard
That works great, thank you ! How can I have those centered ? For now they are on the left:
Kind regards,
Oasure
Hi Oasure,
Add the margin rule to that code
@media only screen and (max-width: 767px) {
#partenaires .avia_image {
max-width:50% !important;
margin: 0 auto;
}
}
If you need further assistance please let us know.
Best regards,
Victoria