I've managed to apply the method of this site http://matthewjamestaylor.com/blog/bottom-footer-demo.htm to framework theme.

This could maybe be ported to the new framework version

Apply these changes to your style.css

/* above the body tag */

html, body {
height: 100%;
margin: 0;
padding: 0;
}

/* in the wrapper id place the following */

#wrapper {
...
position: relative;
min-height: 100%;
}

/* in the container */

#container {
...
padding-bottom: 68px; /* the height of your footer */
}

/* and in the footer */

#footer {
...
position: absolute; /* replace the existing relative with absolute */
bottom: 0;
width: 960px;
}

/* end style.css changes */

page.tpl.php changes

The next you have to do is to place the footer outside of the container div like that:

Comments

panigrc’s picture

Because the last part doesn't render well I repost it



page.tpl.php changes

The next you have to do is to place the footer outside of the container div like that:

      
      </div> <!-- /#container -->
      
      
        <div id="footer" class="clear">
          <?php print $footer_message . $footer ?>
          <?php print $feed_icons ?>
        </div> <!-- /#footer -->




andregriffin’s picture

Glad you're finding Framework so easy to customize :)

andregriffin’s picture

Status: Needs review » Closed (fixed)

I'm going to go ahead and say that this doesn't "need review," as this is more so a specific user-customisation, rather than anything that needs to be applied to the theme. Glad to see you had a successful customization though!

dazzzler’s picture

got this figured out :|

gynekolog’s picture

Version: 6.x-2.4 » 7.x-3.6
Component: Code » CSS/HTML markup
Status: Closed (fixed) » Needs work

Is here some simple solution how put footer at the very bootom (without space) in 7.x version?