How can I make my images full size?

Hi @DylanRyan ,

You could follow these steps:

Step 1: Go to Online store > themes > edit code and find base.css file

Step 2: Insert below code at the end file and Save them

@media screen and (max-width: 750px) {
   section[data-section] {
     padding: 0 !important;
   }

   .product__info-wrapper.grid__item {
     padding: 0 2rem !important;
   }
}
2 Likes