Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Hi,
I am having a couple issues with my header/navigation menu on one of my pages. The dropdown menu on my blog page has a bug where it randomly the option when using the dropdown menu. This bug is only happening on this specific page: https://thecanvas.global/blogs/brands-interviews
I would also like to get ride of the "Home > Brand Conversation Series" from the top of the page, when I tried to get ride header with blog.title it did not do anything.
Thank you for your help!
Solved! Go to the solution
This is an accepted solution.
Remove that code from style.css.liquid and add the below code to your theme.liquid file after <head> tag
<style>
.breadcrumb a,
.breadcrumb span {
display: none;
}
</style>
Hello @Firestone,
Welcome to Shopify Community! Happy 2023 🙂
To remove both the "Home" link and the "Brand Conversation Series" text from the navigation breadcrumb, you can use the display: none CSS property to hide both elements. You can do this by adding the following code to your stylesheet:
.breadcrumb a,
.breadcrumb span {
display: none;
}
This will target the last span element within the breadcrumb element, which should be the one containing the "Brand Conversation Series" text, and hide it.
I hope this helps! Let me know if you have any other questions or if you need further assistance.
Unfortunately that did not change anything, but thank you for the quick response.
I just wanted to check if you were able to add the CSS that I sent earlier. Could you please confirm which file the CSS was added to?
I added it to the style.css.liquid file and it did not change anything. Is there somewhere else I should put it?
This is an accepted solution.
Remove that code from style.css.liquid and add the below code to your theme.liquid file after <head> tag
<style>
.breadcrumb a,
.breadcrumb span {
display: none;
}
</style>
This worked, thank you very much!
Any chance you know how to fix the other issue on this page where the elements of the navigation menu get highlighted randomly when you hover over them?
This issue might be occurring because of a CSS code that is overlapping on the blog page.
Please remove the below provided CSS code to fix the same.
.header-section-overlap:not(.nav-opaque) {
padding-top: 0 !important;
}
Hope this works, let us know if you need any further help.
Regards,
CedCommerce
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025