Sticky Menu for the beginners

Hello

I am just starting my adventure on Wordpress in Unite.
I would like to have a sticky menu on my web page http://www.takiemojekrakowskie.pl/en/homepage/
in a following way:

When scrolled,

  1. At first step the web title is hidden
  2. The navigation menu stays sticked

Looking for your support
Thanks in advance

Hi @tomeq89,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS



@media (min-width: 992px){
div#content {
    margin-top: 0;
}
nav.navbar.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}
.container.header-area {
    margin-top: 45px;
}
}

Best Regards,
Movin

Hello

Thanks for your quick answer, it works but is not actually what I wanted.

I need that the navigation bar was placed as before (below the title/subtitle), but stayed sticked when I scroll down the screen. A the same time I want that the title + subtitle were hidden when scrolled.

Is there a solution for that ?

Best regards

You can try using the following plugins to achieve that.

If the above plugins doesn’t provide you the exact solution then you have to develop custom code to achieve this as described in the following page.