I have a gap between two sections, it appears on my product pages between the product section and the complimentary products, I cannot see a way to remove it. Please can someone assist. my store is www.saltsista.com
Topic summary
A user encountered an unwanted gap appearing between the product section and complementary products section on their product pages.
Solution provided:
- Navigate to Shopify Admin β Online Store β Themes β Actions β Edit Code
- Open Asset > styles.css
- Add the following CSS at the bottom of the file:
.product-area {
margin-bottom: 0;
}
The CSS modification successfully removed the gap. The issue was resolved by eliminating the bottom margin from the product area element.
1 Like
Hi @BK01
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > styles.css and paste this at the bottow of the file:
.product-area {
margin-bottom: 0;
}
2 Likes
Thank you that worked a treat !
1 Like
Hi @BK01
Thank you for your response. Itβs good to know that itβs worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful, please like and accept the solution.

