Hi, I would like some help removing an empty space between the reviews and “recommended products” section
My store: tudoconexao.com
A user seeks help removing unwanted blank space between the reviews section and the “recommended products” section on their product page.
Solutions Provided:
Two community members offered CSS-based fixes:
First solution: Add CSS targeting .AReviewsApp with padding-bottom: 0px !important; to the base.css file
Second solution: Navigate to Shopify admin → Online Store → Themes → Edit code → Assets folder, then add CSS targeting #div_za_reviews and #shopify-section-product-recommendations.section with padding/margin adjustments
Outcome:
The original poster confirmed both solutions worked successfully. The issue appears resolved through either CSS approach.
Hi, I would like some help removing an empty space between the reviews and “recommended products” section
My store: tudoconexao.com
Hey @Dawenn ,
Please add this CSS to your base.css file ![]()
.AReviewsApp {
padding-bottom: 0px;
}
Feel free to reach out [REDACTED] if you have any questions.
Cheers!
Shubham | Untechnickle
Hi @Dawenn
TRy this one.
div#shopify-section-product-recommendations section.section {
margin-top: 0;
}
div#az_reviews {
padding-bottom: 0 !important;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Thanks @Made4uo-Ribe @TheUntechnickle
Both ways worked?