• Of course, after hours of finding a theme that I like, there’s just one thing that’s really irritating me.

    On any page (except the homepage) a page navigation shows up that reads:

    Home > SERVICES

    or

    Home > BOOK NOW

    or whatever page it’s on. There is no theme option to get rid of that. Is there any Additional CSS I can add? I’ve used

    nav.navigation.page-navigation {
        display: none;
    }

    But that did nothing.

    Thanks for the help.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • @tourq Try this:

    .breadcrumb {
      display:none;
    }

    Let me know if it works!

    Hi @tourq,
    By using this CSS you can hide breadcrumb from your side

    .site-content-header {
        display: none;
    }

    This code will remove breadcrumb nav and it’s spacing to, but if you want to hide only breadcrumb item then use this CSS

    .breadcrumbs {
        display: none;
    }

    if you want to remove this from specific page then please add that page class before it.
    like

    .page page-id-294 .site-content-header {
        display: none;
    }
    Thread Starter Chris Stevens

    (@tourq)

    Hi @soberbanda

    That did not work. Thank you for the help.

    Hi @yogeshyadav20

    That worked. I’m wondering, though… While it removed the breadcrumbs and spacing, it left the padding on those extra pages. Is there a way to reduce that?

    Thank you for the help.

    You can add conditions before rendering html code like

    if(!empty($var)):?>
    <div>content goes here</div>
    <?php endif; ?>

    There are lost of blank html

    Thanks

    Thread Starter Chris Stevens

    (@tourq)

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hiding Page Navigation?’ is closed to new replies.