Lack of interest [SUGGESTION] Float the Toolbar

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Cory Booth

Well-known member
OK I am mentioning this here because some of my members have asked for similar tools/mods....
And since the top toolbar has your alerts, I wonder if we could have the ability to float the top toolbar so it remains present onscreen despite user scrolling?

Not good for some, I know, but stuff I have been asked for in the past.
 
Upvote 1
This suggestion has been closed. Votes are no longer accepted.
As already pointed out, it would be trivial to change via templates/CSS:

Code:
#header {
        position: fixed;
        z-index: 51;
}
 
Top Bottom