How Can I Remove The Spac E 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 ofstyle.css - Option 2: Insert custom CSS in
theme.liquidbefore</head>targeting.ltn__breadcrumb-areawith adjustedmargin-bottom - Option 3: Place CSS above
</body>intheme.liquidwith 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.
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
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
Hello @mahasobhi047
Its Artzen Technologies! We will be happy to help you today.
Follow the Below Steps:
- Go to your Online Store
- Edit Code
- Find theme.liquid file
- 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
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



