Adjust the aspect ratio of the thumbnails for instagam posts

The videos have a 9:16 aspect ratio on instagram, and I would like them to appear as such in the feed, rather than 1:1 as they are now.

1 Like

Very nice suggestion, @user11546, thank you!

We’ll try to think about implementing this possibility to the widget, but here’s a solution that will work right away:

.eapps-instagram-feed-posts-item-image-wrapper {
 background-color: #000;
}

img.eapps-instagram-feed-posts-item-image {
 top: 0 !important;
 transform: translateX(-50%) !important;
 height: 100% !important;
 width: auto !important;
}

Just add the code above to the Custom CSS section in your widget settings :slight_smile: