• I use WP latest version and run a Theme Trust template called “swell”.
    How can i fix the mean header menu so that when scrolling down the menu is fixed at the top and visible at all times??

Viewing 1 replies (of 1 total)
  • You can use CSS similar to this:

    .your-header-class {
        position: fixed;
        top: 0;
        z-index: 99999;
    }

    The selector in the above CSS is just a sample. You will have to replace your-header-class with the class of your header.

Viewing 1 replies (of 1 total)
  • The topic ‘fixing header’ is closed to new replies.