Support » Theme: Oxygen » remove grey bar in a page with web path

  • hi! i would remove the bar yellow-circled that you can see in the link. it is a grey bar that show the web path where the page is located on my website. i think it’s orrible, could you help me?
    i’m using oxygen theme offline so i can’t link the site.
    another question that i can’t solve: how to remove the right bar in all the pages? i want it only in the main page that show recent articles.
    thank you very much.

    http://goo.gl/T532kK

Viewing 1 replies (of 1 total)
  • That gray bar is referred to as a breadcrumbs bar. The term breadcrumbs comes from the fable, Hansel & Gretel, who dropped a trail of breadcrumbs so they could find their way back home again.

    In any event, to remove the breadcrumbs bar, from the admin dashboard go to Appearance > Customize, scroll down and expand the Miscellaneous section, and add this to the Custom CSS field:

    .breadcrumbs {display: none;}

    another question that i can’t solve: how to remove the right bar in all the pages? i want it only in the main page that show recent articles.

    You probably also want to expand the center column to fill up the space left behind by the deleted sidebar. Copy & paste this code into the Custom CSS field as well (don’t worry that the field just displays as one long line after you paste it in, it will work fine):

    body.singular-post #content,
    body.singular-page #content
    {
    width: 95%;
    }
    body.singular-post #sidebar-secondary,
    body.singular-page #sidebar-secondary
    {
    display: none;
    }

    This should hide the sidebar on all pages except for the main page, and expand the center column all the way across to the right.

Viewing 1 replies (of 1 total)
  • The topic ‘remove grey bar in a page with web path’ is closed to new replies.