Resize Image in List Section (Mobile)

To resize image in List Section on Mobile, you can follow these.
#1. First, find List Section ID.
In my example, it is: section[data-section-id=“66fdffe11312fe336b2ab908”]

#2. Next, use this code to Custom CSS box.

@media screen and (max-width:767px) {
  section[data-section-id="66fdffe11312fe336b2ab908"] .list-item-media {
    width: 60% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
}

#3. Result

1 Like