It's strange, but for some reason when I attempt to apply position:fixed
using jQuery:
$('#footer').css('cssText', 'position:fixed !important;');
to my footer, the result on the page is different:
<div id="footer" style="position: static;">
...
</div>
I have verified in the Chrome console and there are no other styles being applied aside from those set through code. Unfortunately, I am unable to define this in the .css file. Why is this happening?