Re: Remove spacing between sections

How can I eliminate the blank space between sections on my product pages?

aidanbrown
Tourist
8 0 0

I have rich text above my third-party product reviews app on all of my product pages.

However, there is a blank space between these two sections that I want to be removed on all of my product pages.

I am using the Refresh theme.

My website is https://novorelief.com/ and this problem affects all of my product pages.

Deadzone.PNG

 

Replies 4 (4)

PageFly-Henry
Shopify Partner
1184 335 290

Hi @aidanbrown 

This is Henry 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 base.css

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

 

section#shopify-section-template--21656107909413__169580998888506cac {

    margin-top: -42px !important;

}

 

Hope that my solution works for you.

Best regards,

Henry | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

aidanbrown
Tourist
8 0 0

Thanks for your help. This worked for one of the products but didn't change anything on the other product pages.

niraj_patel
Shopify Partner
2378 514 512

Hello @aidanbrown 

You can add code by following these steps 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid


<style>

   #shopify-section-template--20861929292069__16962732684717697b {
          background-color: #eaeaea;
          margin-top: -42px;
   }
  div#shopify-block-14faba5c-701f-47e4-88ed-a4a4e93e9634 {
     padding-top: 19px;
  }

</style>

techlyser_web_0-1703852797886.png

 

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
aidanbrown
Tourist
8 0 0

Thanks for your help. This worked for one of the products but didn't change anything on the other 4 product pages.