• I’m editing this site and there’s a grey bar toward the top that says “browse.” I don’t know how or why it’s there. Where do I find it in the back end to get rid of it?

    I see it when I click to view page source:

    <div class="content-wrap">	
    
    		<div id="content">
    
    		<div class="breadcrumb-trail breadcrumbs" itemprop="breadcrumb">
    			<span class="trail-browse">Browse:</span> <span class="trail-end">Home</span>
    		</div>
Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi

    you can do that simply in css by writing display:none inside this class in style.css but however you can check for this in functions.php file there will be a breadcrumb method so comment that.

    Usually, there’s a configuration item to turn off breadcrumbs. But…if you can’t find it, or don’t feel like looking, you might add this to your style.css file:

    .breadcrumbs {
    display: none;
    }

    If you don’t have a child theme, you could use a plugin like Simple Custom CSS and add it there. I wouldn’t recommend adding it to your theme’s base style.css because if you ever update the theme, that change will be lost.

    Thread Starter kellkellkelly

    (@kellkellkelly)

    Augustin56, would you happen to know where to lead me to look for turning off breadcrumbs?

    Kellkellkelly,

    I see that you are using a child theme, so it’s probably fine to put it in the style.css file. Just go to Appearance/Edit on the Dashboard and put it at the bottom.

    You’re using Oxygen theme, and I don’t have that one, so I’m not familiar with it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove grey browse bar from homepage’ is closed to new replies.