How do I move up from too much white space of the gap on mobile?

Solved

How do I move up from too much white space of the gap on mobile?

AlexYZ
Shopify Partner
136 1 38
Accepted Solution (1)
infoatcodelab7
Shopify Partner
593 141 156

This is an accepted solution.

@AlexYZ 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file -> Save

@media(max-width:768px){
  .shopify-product-reviews-badge {
  display: none;
}
.grid-item.grid-product {
  margin-bottom: 0;
}
.grid-item__meta {
  margin-bottom: 0;
}
}
Want to modify or develop new website, Hire us.
If helpful then please Like and Accept Solution .
Email: info@codelab7.com

View solution in original post

Replies 3 (3)

AlexYZ
Shopify Partner
136 1 38

Website>kawaiibonjour.com

infoatcodelab7
Shopify Partner
593 141 156

This is an accepted solution.

@AlexYZ 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file -> Save

@media(max-width:768px){
  .shopify-product-reviews-badge {
  display: none;
}
.grid-item.grid-product {
  margin-bottom: 0;
}
.grid-item__meta {
  margin-bottom: 0;
}
}
Want to modify or develop new website, Hire us.
If helpful then please Like and Accept Solution .
Email: info@codelab7.com
AlexYZ
Shopify Partner
136 1 38

Thanks!