Floating header?

Discussion in 'Traffica WordPress Theme' started by stevegarden, Oct 10, 2013.

  1. stevegarden

    stevegarden New Member

    Joined:
    Oct 2, 2013
    Messages:
    8
    Likes Received:
    0
    Hi - anyway to make the header logo and menu space floating? So that when you scroll down the page it stays at the top?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .header {
    position: fixed;
    overflow: hidden;
    z-index: 9999;
    background: white;
    border-bottom: 1px solid #d2d3d4;
    }

    This is the possible solution for your issue.
     

Share This Page