Feature #1725
Stick footer to the bottom of a page
| Status: | Incomplete | Start: | 04 May 2011 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assigned to: | % Done: | 0% |
||
| Category: | - | |||
| Target version: | - | |||
| Votes: | 1 |
Description
Some links on the subject:
History
Updated by Andriy Lesyuk about 2 years ago
- Target version set to 0.02
Updated by Andriy Lesyuk almost 2 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:
1 <html>
2 <body>
3 <div id="wrapper">
4 <div id="main">
5 </div>
6 </div>
7 <div id="footer">
8 </div>
9 </body>
10 </html>
And the structure of Redmine HTML is:
1 <html>
2 <body>
3 <div id="wrapper">
4 <div id="wrapper2">
5 <div id="main">
6 </div>
7 <div id="footer">
8 </div>
9 </div>
10 </div>
11 </body>
12 </html>
