Remove blank space

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 :slightly_smiling_face:

.AReviewsApp {
padding-bottom: 0px;
}

Feel free to reach out [REDACTED] if you have any questions.

Cheers!
Shubham | Untechnickle

Hi @Dawenn

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
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?