How can I create space between navigation and product in the Boost theme?

Topic summary

Hauptthema: Abstand zwischen Breadcrumb-Navigation und Produkt im Shopify-Theme Boost sowie Schriftgröße/Abstände der Breadcrumbs anpassen.

Aktuelle Lösungsschritte:

  • Zugangsdaten zur Store-Preview geteilt; Anpassungen über Online Store → Themes → Edit code → Assets → styles.css.
  • Abstand vergrößern: per CSS entweder margin-bottom auf .container.breadcrumbs-container oder padding-top/-bottom auf nav.breadcrumbs. Der Abstand wurde bestätigt als funktionierend.

Weitere Anpassungen:

  • Schriftgröße der Breadcrumb-Links erhöhen: font-size auf ol.breadcrumbs-list. Dies scheint funktioniert zu haben (Bestätigung/„thank you“), danach Wunsch, weitere gelb markierte Texte zu vergrößern.
  • Für die gelb markierte Navigation/Elemente: vorgeschlagen wurden font-size auf .breadcrumbs-prod-nav.
  • Abstände zwischen einzelnen Breadcrumb-Items (nicht Schriftgröße): gap auf ol.breadcrumbs-list und li.breadcrumbs-list__item.

Begriffe/Technik:

  • Breadcrumbs = Navigationspfad/Link-Leiste oberhalb des Produkts.
  • CSS = Stylesheet-Regeln; Selektoren z. B. .container.breadcrumbs-container, nav.breadcrumbs, ol.breadcrumbs-list.

Status/Outcome:

  • Abstand und Breadcrumb-Schriftgröße gelöst. Zusätzliche Vergrößerung gelb markierter Texte wurde mit weiterem Selektor vorgeschlagen; abschließende Bestätigung dazu steht noch aus. Screenshots halfen, die Zielbereiche zu identifizieren.
Summarized with AI on January 21. AI used: gpt-5.

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

1 Like

Hi @petexpress ,

Could you please share your store url and password (if enabled), so that I can help

1 Like

www.petexpress.ch

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:

  1. Go to Online Store → Theme → Edit code.

  2. Open your assets/styles.css theme file.

  3. 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

1 Like

Hi @petexpress

You can adjust the top and bottom space by adding the code below

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “styles.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

NOTE: Change the padding-top or padding-bottom to the space you want.

nav.breadcrumbs {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
  • SAVE

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

juhu !! it worked

thank you so much :blush:

do you know the code to make the words bigger ?

thank you so much ! it worked too :heart_eyes:

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

1 Like

thank you!!

now how can i make these bigger..(yellow marked)

Hi @petexpress

I think you mean the word spaces. If so, please follow the instructions below

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “styles.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

NOTE: Adjust 1rem to the space you want

ol.breadcrumbs-list, li.breadcrumbs-list__item {
    gap: 1rem;
}
  • SAVE

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
}
1 Like