bear
bear

Reputation: 11625

Getting footer the stay at the bottom

I'm trying to make the footer stay at the bottom using CSS, - sticky footer:

.wrapper {
  margin: 0 auto;
  padding: 0 0 0 0;
  width: 100%;
  text-align: left;
  background: #F5F5FF;
}

.page .footer {
  left: 0;
  width: 100%;
  min-width: 300px;
  position: fixed;
  margin-top: -150px;
}

.tfoot {
  background: #3E5C92;
  color: #E0E0F6;
}

.smallfont {
  font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}

And here's the HTML of the thing:

<div class="wrapper">My stuff</div>
<div class="footer">
<div class="tfoot" align="left" style="padding:6px">
<div class="smallfont" style="float:right">
<a href="?app=about">About Extranet</a>&nbsp;<a href="?app=changelog">Changelog</a>&nbsp;</div>
<div style="color:white">
<small>Copyright &copy; 2009 Radon Systems&nbsp;|&nbsp;Shamil Nunhuck&nbsp;|&nbsp;<?php echo($product.'&nbsp;|&nbsp;'.$version.'&nbsp;|&nbsp;'.$build); ?>
</div></div></small></div>

But it's not sticking to the bottom, at all. What's wrong with it?

Upvotes: 3

Views: 7491

Answers (3)

Ali
Ali

Reputation: 253

If you want for example .footer to stick to bottom try the following :

.footer { position:fixed; bottom:0; width:100%; height:110px;}

Of course i made the width and height up so change as you require.

Hope this helps!!

Upvotes: 4

jrista
jrista

Reputation: 33010

Try this method (its the only one I've found consistently works):

http://www.cssstickyfooter.com/

Upvotes: 7

John Farrell
John Farrell

Reputation: 24754

You do not have bottom: set.

Dup: HTML footer problem

Upvotes: 1

Related Questions