How to adjust image width for mobile view only?

hi,i want to change the width of my images on multirow but only on mobile because on deskop its pefect

Hello @MoggedTeams , You can use the below media query to change the width of the image on mobile. Add the CSS in your section file in the tag.

@media (max-width: 768px) {
    img {
        width: 80%; /* Change the width to 80% on mobile devices */
    }
}

Replace the “img” with your class or id.