Try using this as custom CSS, change the value 720px to fit the preferred size.
.collage {
max-width: 720px;
margin: auto;
}
.banner {
max-width: 720px;
margin: auto;
}
A user needed to reduce the size of a product page collage on desktop while keeping the mobile version unchanged. The collage appeared too large on desktop despite looking good on mobile.
Solution provided:
.collage { max-width: 720px; margin: auto; } and adjust the pixel value as neededOutcome:
The issue was successfully resolved using the provided CSS solution. The user was able to control the desktop collage size independently from the mobile view.
Try using this as custom CSS, change the value 720px to fit the preferred size.
.collage {
max-width: 720px;
margin: auto;
}
.banner {
max-width: 720px;
margin: auto;
}