I am using the WP Catalogue Plugin to create these product listing pages./ All Products Page: http://www.allindiafurniture.com/all-india-furniture-store/ Product Listing Page: http://www.allindiafurniture.com/wpccategories/sofa-set/ I am using the Oxygen theme for this website. Both these pages are appearing to be untidy From the All Products Page I want to remove the Grey background breadcrumb which I think is the default breadcrumb by the Oxygen theme. From the product listing page you can see the WP Catalogue breadcrumb is overlapping the top menu which is looking very bad. Looking forward for your assistance!
I don't see either of those problems in Chrome: on both pages, the breadcrumb background is white and looks fine. The only oddity in my browser is a duplicate of "Home" when on the home page (in small text, just under the nav bar "Home", not in the breadcrumb).
Hi faizzsheik, I see the grey breadcrumb only on the second page you posted. For remove the breadcrumb, there are 2 ways: using CSS or editing php file. 1st way, use CSS: add the following to your CSS stylesheet (style.css) .breadcrumbs { display: none; } 2nd way, edit PHP: open functions.php and find /* Add the breadcrumb trail just after the container is open. */ add_action( "{$prefix}_open_content", 'breadcrumb_trail' ); /* Breadcrumb trail arguments. */ add_filter( 'breadcrumb_trail_args', 'oxygen_breadcrumb_trail_args' ); comment out the lines: /* Add the breadcrumb trail just after the container is open. */ // add_action( "{$prefix}_open_content", 'breadcrumb_trail' ); /* Breadcrumb trail arguments. */ // add_filter( 'breadcrumb_trail_args', 'oxygen_breadcrumb_trail_args' ); Consider to make this change inside a child theme instead of the original Oxygen, otherwise at next update of theme, you'll lose all the modification. Hope this help. Regards.