Re: Remove breadcrumbs container from all pages

Remove breadcrumbs container from all pages

krishsmk
Tourist
4 0 2

Could anyone help me to remove this annoying big container below header

krishsmk_0-1702298891803.png

my store is vabto.in

 

Replies 6 (6)

Hamza_Hussain
Shopify Partner
56 6 13

Usually there is a option in the customizer to remove the bread crumbs but if that does not work you can hide from edit code section it should be present in the header file

Honey G Hamza

Made4uo-Ribe
Shopify Partner
8485 2027 2487

Hi @krishsmk 

Check this one.

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 "base.css, style.css or theme.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:

 

nav.breadcrumb.text-center {
    display: none;
}
.container {
    padding-top: 20px;
}

 

And save. 

Result:

Made4uoRibe_0-1702305148095.png

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
krishsmk
Tourist
4 0 2

Hi @Made4uo-Ribe 

Appreciate your reply.

I have added the above code in theme.css as other files are not present there.

krishsmk_0-1702307140987.png

 

 

I could still see the issue.

krishsmk_1-1702307157404.png

 

Could you please help me out to find where did it go wrong.

Made4uo-Ribe
Shopify Partner
8485 2027 2487

Replace with this one. 

 

nav.breadcrumb.text-center {
    display: none !important;
}
.container {
    padding-top: 20px !important;
}

 

And Save. 

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
krishsmk
Tourist
4 0 2

Still its same mate.

 

krishsmk
Tourist
4 0 2

Still its same mate. Could you please help.