Move the moderator bar to the bottom and make it float

hum :s i use flexile style and no work :(
As has been discussed extensively in the Flexile discussion area... on 1.2.x it doesn't do a LOT of what it should.;)
In another words, until the author fixes it or someone else takes it on it's borked.

A lot of fixes can be found in the discussion area for that style - but it still does some things differently that some CSS won't work with.
 
I am well aware this is a very old thread, but I figure I would throw out there my code I have for this which also fixes the body padding and border issue.
Code:
#moderatorBar
{ box-shadow: 0 0 5px @primaryMedium;
border-top: 1px solid @primaryLightish;
border-bottom: 0px solid @primaryLightish;
position: fixed;
width: 100%;
bottom: 0px;
z-index: 100;}
body
{padding-bottom: 25px;}
 
Top Bottom