Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #505079

    Hi, i use a transparent header on my new website. I start with a full screen animation thats why i don’t want to show the navigation at all until the users scrolls down. With ONE EXCEPTION the “Login” Link within the navigation should be visible.

    How do i achieve that?

    I use the code above to hide the menue in transparent mode and i need a solution to exclude the “Login” Link from that.

    .av_header_transparency
    .av-main-nav-wrap
    {
    display: none !important;
    }
    .av_header_transparency
    .container_wrap_meta
    {
    display: none !important;
    }
    Andreas

    • This topic was modified 8 years, 7 months ago by virtualcowboy.
    #505248

    Hi virtualcowboy,

    You could try to hide the elements by their id instead, to hide the one menu item you have on your site would be:

    #menu-item-517 {
    display:none;
    }
    

    You can inspect each menu item by right clicking on them and find their id’s.

    Thanks,
    Rikard

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