[Support request] Style breadcrumb like menu

Home Forums Support [Support request] Style breadcrumb like menu

Home Forums Support Style breadcrumb like menu

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #252682
    scott doel

    Hi Tom,

    I copied the code from here and it works great.

    Is it possible to join the new div onto the menu? I’m also using a sticky menu so would like the breadcrumbs to stay also

    If you needed to see the site its https://www.scottrdoel.co.uk

    #252762
    Tom
    Lead Developer
    Lead Developer

    Hmm, not easily.

    You could try adding them into the generate_inside_navigation hook.

    add_action( 'generate_inside_navigation','tu_breadcrumb_nav' );
    function tu_breadcrumb_nav() { ?>
        <div class="nav-breadcrumbs hide-on-mobile hide-on-tablet">
            Your breadcrumb code here
        </div>
    <?php }

    Then you would need to style it:

    .nav-breadcrumbs {
        float: right;
    }

    Hope that’s enough to get you started 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.