Feature #1725
Stick footer to the bottom of a page
Start date:
04 May 2011
Due date:
% Done:
50%
Associated revisions
Made footer stick to bottom (#1725), added sidebar toggler and other fixes for mobile
History
#1 Updated by Andriy Lesyuk over 13 years ago
- Target version set to 0.02
#2 Updated by Andriy Lesyuk over 13 years ago
- Status changed from Open to Incomplete
- Target version deleted (
0.02)
The method described on the link won’t work for Redmine... It requires the following HTML structure:
<html>
<body>
<div id="wrapper">
<div id="main">
</div>
</div>
<div id="footer">
</div>
</body>
</html>
And the structure of Redmine HTML is:
<html>
<body>
<div id="wrapper">
<div id="wrapper2">
<div id="main">
</div>
<div id="footer">
</div>
</div>
</div>
</body>
</html>
#3 Updated by Andriy Lesyuk almost 11 years ago
- Status changed from Incomplete to Open
Recent Redmine comes with #wrapper3
, that can help...
#4 Updated by Andriy Lesyuk almost 11 years ago
- Status changed from Open to In Progress
- % Done changed from 0 to 50
#5 Updated by Andriy Lesyuk almost 11 years ago
- Status changed from In Progress to Deferred
If #wrapper
and #wrapper2
are set to min-height: 100%
, it does not work. If they are set to height: 100%
, scrolling does not work...