Site logo

[Resolved] Navigation Menu Vertical Lines

Home Forums Support [Resolved] Navigation Menu Vertical Lines

Home Forums Support Navigation Menu Vertical Lines

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2458819
    Stephen

    Hi, I ve added vertical lines to my Nav Menu with the CSS below which adds a left border to each menu item.

    So far I cant work out the CSS to add only the last border on the right.

    – Can you help me with this ?

    Thanks
    Stephen

    .main-navigation .main-nav > ul > li {
    border-left: 2px solid white;
    }

    #2458950
    David
    Staff
    Customer Support

    Hi there,

    add this CSS to include the last items right border:

    
    .main-navigation .main-nav > ul > li:last-child {
        border-right: 2px solid white;
    }
    #2458991
    Stephen

    Hi, thank you yes I cant get that to work. Maybe its because I have other CSS as below for the nav bar.

    Maybe its not the last-child with my arrangement ?

    .main-navigation .menu-bar-items {
    position: absolute;
    right: 0;
    }

    .nav-menu-cart {
    display: none;
    }

    #2459201
    David
    Staff
    Customer Support

    Aah its not the last child.
    Try this instead:

    
    .main-navigation .main-nav > ul > li:nth-child(4) {
        border-right: 2px solid white;
    }
    #2459230
    Stephen

    Fantastic thank you – easy when you know how !

    #2459344
    David
    Staff
    Customer Support

    Glad to be of help!

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