Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Why is there extra spacing below product reviews on desktop view?

Solved

Why is there extra spacing below product reviews on desktop view?

Madeleine4
Tourist
24 0 2

Hi, we are facing a weird thing, where the review blocks under some products have a huge block / spacing below them. It doesn't happen for all products, like this one is fine, but then the bug shows up with most items like this one. Also it only seems to be an issue in desktop view, as for mobile everything looks fine. Can anyone help? 

Accepted Solution (1)

PageFly-Victor
Shopify Partner
7865 1786 3118

This is an accepted solution.

Hi @Madeleine4 

This is Victor from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

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

 

.spr-reviews {

    display: flex !important;

    flex-direction: column !important;

}

 

Hope that my solution works for you.

Best regards,

Victor | PageFly

View solution in original post

Replies 2 (2)

PageFly-Victor
Shopify Partner
7865 1786 3118

This is an accepted solution.

Hi @Madeleine4 

This is Victor from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

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

 

.spr-reviews {

    display: flex !important;

    flex-direction: column !important;

}

 

Hope that my solution works for you.

Best regards,

Victor | PageFly

Madeleine4
Tourist
24 0 2

That worked perfectly, thanks!