Add a Custom CSS to the Live Shopping Page (display and size)
By default, the Replay widget displays 4 images of 280 px per line. You can easily adjust the image size to display up to 8 replays per line.
#livemeup-landingpage .lmuReplaysWrapper {
grid-template-columns: repeat(auto-fit, min(280px, 100%));
}
#livemeup-landingpage .lmuReplayImg {
width: min(280px, 100%);
}
/
Updated on: 12/08/2025
Thank you!