Affix menu

hello how to fix top menu with scrolling (like affix bootstrap menu) ?
regards

To create fixed/sticky menu:

Open header.php and replace

<nav class="navbar navbar-default" role="navigation">

with

<nav class="navbar navbar-default navbar-fixed-top" role="navigation">

These changes can be done via Child Theme as well. Simply copy/paste header.php file to Child Theme root folder and edit it there.

Now you will see that part of content area will be hidden behind menu because menu is taken out and added on the top of it. This can be fixed by moving content area slightly down by adding this to Theme Options – Other – Custom CSS

.top-section,
#content {
    margin-top: 67px;
}

it’s perfect !!! thnks

the solution works perfectly well , but pl let me know what changes to do in the css so that it works fine for the toggle menu as well.

when i am putting the above code, for the mobile site , the content does not readjust when the toggle menu opens