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.
]]>It sounds like you’re using WooCommerce. Here’s how to manage the breadcrumbs: https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/
]]>nav.woocommerce-breadcrumb {
display: none;
}
To add CSS: use the “Additional CSS” option in the customizer. https://codex.www.ads-software.com/CSS#Custom_CSS_in_WordPress
Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.
]]>.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.www.ads-software.com/CSS#Custom_CSS_in_WordPress
Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.
]]>