Site logo

[Resolved] How to insert a small vertical line next to the logo in sticky navigation ?

Home Forums Support [Resolved] How to insert a small vertical line next to the logo in sticky navigation ?

Home Forums Support How to insert a small vertical line next to the logo in sticky navigation ?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1914762
    Cristiano

    How to insert a small vertical line next to the logo in sticky navigation

    I would like to insert a line between enter and logo of my site and the menu, which would only work when scrolling down in the sticky navigation, just like the site I sent in the sensitive area.

    My website works like this:

    01

    I would like to get this effect:

    2

    Can you help me, please?

    #1914782
    Ying
    Staff
    Customer Support

    Hi Cristiano,

    Give this CSS a try:

    #sticky-navigation .navigation-branding:after {
        content: "";
        padding-left: 20px;
        border-right: 1px solid grey;
        height: 30px;
    }

    Feel free to change the values 🙂

    #1914788
    Cristiano

    Thank you very much, it worked perfectly!!

    #1914823
    Ying
    Staff
    Customer Support

    You are welcome 🙂

    #2535876
    Émilien

    Hi,

    What is the code for a normal navigation ?

    Thank you

    #2535958
    Leo
    Staff
    Customer Support

    Try:

    .main-navigation .navigation-branding:after {
        content: "";
        padding-left: 20px;
        border-right: 1px solid grey;
        height: 30px;
    }

    If that doesn’t work then please open a new topic and link us to the page in question.

    Thanks!

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