Sticky menu only when I scroll up, why ?

Knowledge Base > Sahifa > Sticky menu only when I scroll up, why ?

in Sahifa

This is called “smart scroll” so you only see the menu when you scroll up in your website, in case you want the menu to be sticky all the time, Please add this code to the “Global CSS” section in the (Theme Settings page >> Styling):

.fixed-enabled {
    top: 0;
}
body.admin-bar .fixed-enabled {
    top: 32px;
}

This should do the trick.

0