I'm looking for a part-time remote job.

Hire me


I'm the author of:

Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.

Check the book's project or

Buy the book

Social pages of the book:

By buying this book you also donate to Redmine (see this page).


Follow me:

Feature #1725

Stick footer to the bottom of a page

Added by Andriy Lesyuk almost 13 years ago. Updated over 10 years ago.

Status:
Deferred
Priority:
Normal
Assignee:
Target version:
-
Start date:
04 May 2011
Due date:
% Done:

50%


Description

Associated revisions

Revision 24 (diff)
Added by Andriy Lesyuk over 10 years ago

Made footer stick to bottom (#1725), added sidebar toggler and other fixes for mobile

History

#1 Updated by Andriy Lesyuk almost 13 years ago

  • Target version set to 0.02

#2 Updated by Andriy Lesyuk almost 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 over 10 years ago

  • Status changed from Incomplete to Open

Recent Redmine comes with #wrapper3, that can help...

#4 Updated by Andriy Lesyuk over 10 years ago

  • Status changed from Open to In Progress
  • % Done changed from 0 to 50

#5 Updated by Andriy Lesyuk over 10 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...

Also available in: Atom PDF

Terms of use | Privacy policy