March 20, 2013 at 1:51 pm
#140
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.
🙂