How to eliminate the space between breadcrumb and product?

Topic summary

A user seeks to reduce excessive vertical spacing between the breadcrumb navigation and product content on their Shopify store. An attached screenshot illustrates the gap issue.

Proposed Solutions:

Multiple developers offer CSS-based fixes:

  • Option 1: Add .ltn__breadcrumb-area {margin-bottom: 50px !important;} to the bottom of style.css
  • Option 2: Insert custom CSS in theme.liquid before </head> targeting .ltn__breadcrumb-area with adjusted margin-bottom
  • Option 3: Place CSS above </body> in theme.liquid with similar margin adjustments

Follow-up Issue:

Another user (Shane_h) reports difficulty reducing spacing below ~40px on the Charge theme’s collection pages despite trying values of 0, 10, and 20.

Resolution:

The issue is resolved by adding media query CSS to Custom CSS settings:

@media (min-width: 750px) {
  :is(.spaced-section) {
    margin-top: .5rem !important;
  }
}

Shane confirms this solution works successfully.

Summarized with AI on October 28. AI used: claude-sonnet-4-5-20250929.

How Can I Remove The Spac E Between Breadcrumb And Product

Hello @mahasobhi047
Its Artzen Technologies! We will be happy to help you today.

PLEASE SEND ME YOUR STORE URL

Let me know if need further assistance
Regards,
Artzen Technologies

https://buy4lessus.com/

Hi @mahasobhi047

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the style.css file:

.ltn__breadcrumb-area {margin-bottom: 50px !important;}

Regards,

San

Hi @mahasobhi047

You can add this code to theme.liquid file before


Hello @mahasobhi047
Its Artzen Technologies! We will be happy to help you today.

Follow the Below Steps:

  1. Go to your Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following CSS at the bottom of the file above

AFTER ADDING ABOVE CSS THE RESULT:

Let me know if need further assistance
Regards,
Artzen Technologies

Hi Dan so i have done this on our charge theme [email removed] this URL https://kitout-fitness.co.uk/collections/women and set it at various points 0, 10, 20 it will increase over about 40 but wont go below that i wonder if you have any suggestions for this please thanks shane

1 Like

Please add this code to Custom CSS of your theme settings

@media (min-width: 750px) {
    :is(.spaced-section) {
        margin-top: .5rem !important;
    }
}

perfect thank you Dan

regards shane