Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #255101

    Hi,
    Would there be a way to add a vertical line to the right of top navigational elements like so:
    http://i.imgur.com/oT1EGX9.jpg?1

    E.

    #255321

    Hey!

    Try adding this code to the Quick CSS:

    #avia-menu > li > a:after{
        content: "";
        border-right: 2px solid #33cc00;
        position: relative;
        left: 15px;
    }
    #avia-menu > li:last-child > a:after{
        content: "";
        border: 0;
    }

    Make sure the > are written correctly.

    Cheers! 
    Josue

    #255617

    Thanks so much Josue. It worked like a charm :)
    E.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Adding a vertical line right of top navigation’ is closed to new replies.