Sticky Menu?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #579
    Louis
    Guest

    Hello there,

    just a quick question:

    is it possible to have a sticky menu with enigmatic? And do you have an idea, how to make this happen? Guess this would be awesome!

    #583
    livemesh
    Keymaster

    If you are not worried about having it on mobile, you can paste the below in Custom CSS tab in options panel or custom.css to achieve that effect. Again, have disabled it in mobile since space is a premium there anyway and user can get to the top menu by touching the top bar (in iOS).

    @media only screen and (min-width: 768px) {
    
        #header-area-wrap {
            width: 100%;
            position: fixed;
            top: 0px;
            left: 0px;
            background-color: #F9F9F9;
            z-index: 9999;
            box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.33);
            -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.33);
            -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.33);
            overflow: visible!important;
            }
    
        .admin-bar #header-area-wrap {
            padding-top: 28px;
            }
    
        #showcase-area, #custom-before-content-area-wrap, #before-content-wrap { margin-top: 115px; } /* 115px is the default height of the header */
    
        }
    
    #620
    livemesh
    Keymaster

    Sticky menu will be released as part of an Enigmatic update coming this week. Hope you will find it useful. Thanks

    #629
    rladouceur
    Member

    Can I turn off the sticky menu container if I choose not to use a sticky menu?

    #635
    livemesh
    Keymaster

    Paste this into Custom CSS tab in Theme Options panel –

    #sticky-menu-container { display: none !important; }
    

    Will make it an option in my next update surely. Thanks

    #636
    rladouceur
    Member

    Easy enough! Thanks.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Enigmatic Theme Support’ is closed to new topics and replies.