Remove Breadcrumbs
-
Hello,
What additional CSS would I use to remove the “HOME/SHOP” text in the top right? I also want to remove where it says “SHOP” in the top left.
Thank you.
The page I need help with: [log in to see the link]
-
The URL you gave doesn’t work. Please double check.
It sounds like you’re using WooCommerce. Here’s how to manage the breadcrumbs: https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/
Thank you. I had a typo. This is the correct url: http://www.vstarjeans.com/shop/
The same response applies, though you could also hide the breadcrumbs with this CSS:
nav.woocommerce-breadcrumb { display: none; }To add CSS: use the “Additional CSS” option in the customizer. https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress
Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.
Thank you! I still cannot find how to remove the “Shop” title though.
.post-type-archive-product h1.woocommerce-products-header__title.page-title { display: none; }To add CSS: use the “Additional CSS” option in the customizer. https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress
Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.
Perfect, thank you!
The topic ‘Remove Breadcrumbs’ is closed to new replies.