Hallo
wie kann ich zwischen der Navigation (breadcrumb) und dem Produkt einen Abstand hinzufügen?
how can I add a space between the navigation (breadcrumb) and the product?
Theme: boost
Hauptthema: Abstand zwischen Breadcrumb-Navigation und Produkt im Shopify-Theme Boost sowie Schriftgröße/Abstände der Breadcrumbs anpassen.
Aktuelle Lösungsschritte:
Weitere Anpassungen:
Begriffe/Technik:
Status/Outcome:
Hallo
wie kann ich zwischen der Navigation (breadcrumb) und dem Produkt einen Abstand hinzufügen?
how can I add a space between the navigation (breadcrumb) and the product?
Theme: boost
Hi @petexpress ,
Could you please share your store url and password (if enabled), so that I can help
password : alpha
Hi @petexpress ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
I realize this situation isn’t exactly what you’d hope for, but I’ve got a potential solution that I’d like to share with you:
Go to Online Store → Theme → Edit code.
Open your assets/styles.css theme file.
Add the code at the end of the file:
.container.breadcrumbs-container {
margin-bottom: 30px;
}
Note: You can adjust margin value to fit your store
Best regards,
Anthony
Hi @petexpress
You can adjust the top and bottom space by adding the code below
NOTE: Change the padding-top or padding-bottom to the space you want.
nav.breadcrumbs {
padding-top: 2rem;
padding-bottom: 2rem;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
juhu !! it worked
thank you so much ![]()
do you know the code to make the words bigger ?
thank you so much ! it worked too ![]()
do you know how to make it bigger ? (the words)
Hi @petexpress
You just need to change the number in the padding-top and padding-bottom if needed. Example: 5 in 5rem.
nav.breadcrumbs {
padding-top: 5rem;
padding-bottom: 5rem;
}
no.. just the space gets bigger and that workd. i am thankful for that.
but what I mean now, is that the words are way too small.. how can I change the size of it?
I’m happy to hear that the solution worked well for you!
Yes, you can add this code below to styles.css
ol.breadcrumbs-list {
font-size: 15px;
}
Note: You can adjust value to fit your store
Hi @petexpress
I think you mean the word spaces. If so, please follow the instructions below
NOTE: Adjust 1rem to the space you want
ol.breadcrumbs-list, li.breadcrumbs-list__item {
gap: 1rem;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Yes, you can try this code below and add them to styles.css:
.breadcrumbs-prod-nav {
font-size: 15px
}