• Hi, I was wondering if someone can help me. I’m using enigma theme and just did some modifications to a page. Once the page was ok I checked the site and noticed that the menu bar moves when you scroll down with the mouse.

    Does anyone know how to stop this?

    Any help would be much appreciated

    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Please use the below CSS code in custom CSS box (Dashboard -> Customize -> Theme option -> theme general option -> Custom CSS) and save the changes.

    #myCarousel img {
        z-index: -1;
        position: relative;
    }
    .affix nav.navbar.navbar-default {
        z-index: 99999;
        right: 0;
        left: 20%;
        top: 0;
    }
    .affix {
        position: fixed;
        top: 0;
    ]
    @media(max-width:480px){
    .affix {
        position: fixed;
        width: 100%;
        z-index: 9999;
        top: 0;
    }
    ul.dropdown-menu {
        width: 100%;
        position: static;
    ;
    }

    Thanks.

    Thread Starter mbain78

    (@mbain78)

    Hi Thanks for that. However it doesn’t seem to change anything.

    Regards

    Hello,

    Please try the below CSS code and remove the previous given code and save the changes –

    @media (min-width: 1200px){
    #enigma_nav_top.affix {
        position: relative;
    }
    }

    This CSS code will definitely help you.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Menu Bar moves when scroll down mouse’ is closed to new replies.