Skip to main content

How to fix the cropped images in Full page bundle?

Sid avatar
Written by Sid
Updated over 2 weeks ago

Bundle Customization can be done in the Additional configurations settings of the app.

The product gets cropped during setup for some stores.

  • To fix this issue, navigate to Settings > Additional configuration for full page builder

  • Copy and paste the code below in the Custom CSS for bundle builder

.gbbProductImageContainerImg {
object-fit: contain !important;
}

OR

.gbbProductImageContainerImg {
object-fit: contain !important;
max-height: 100%;
max-width: 100%;
aspect-ratio: 1 / 1;
}

If you are facing any troubles or have further customization requests

Did this answer your question?