Search code examples
navigationsticky

How to create sticky navigation bar


How can i create sticky navigation bar just like this.


Solution

  • You can always to a menu with {position: fixed;} example:

    .nav-container {
        background: transparent;
        min-width: 280px;
        position: fixed;
        top: 130px;
        width: 100%;
        z-index: 1000; 
    }
    

    Here's some full code that you can play around with from CodePen: http://codepen.io/g13nn/pen/suFji