Reply To: Sticky menu adjustment question

#140
Support
Keymaster

Hello, there are a few questions that are not covered by the support forum (like this one you posted which is a custom code question.)

But here you go, try this:

All the elements that are not “position:static” need a zIndex definition, so please add this:

$('.float').css({
            position: 'fixed',
            top: '0',
            z-index: '300'
        });

Adjust the z-index to the number you want – depending on the other elements.

🙂