Hi,
I'm trying to create a "Footer" div, i.e one that shows up RIGHT at the bottom of the page ... I have:
..and have also tried:
..but to no avail (works fine in everything, appart from IE 8 )
Is there something else I should be trying?
You can see it in action here:
..the bottom bit:
<div id="footer">
gggg
</div>
..anyone got any suggestions? Its annoying - cos its fine in FF2 and 3, IE 6 and 7 - just not IE 8 (man, I hate M$ sometimes :/)
TIA!
Andy
I'm trying to create a "Footer" div, i.e one that shows up RIGHT at the bottom of the page ... I have:
Code:
#footer {
position:absolute;
bottom:0;
}
..and have also tried:
Code:
#footer
{
clear: both;
position: absolute;
bottom: 0 !important;
bottom: -1px;
width: 100%;
margin: 0;
padding: 0;
}
..but to no avail (works fine in everything, appart from IE 8 )
Is there something else I should be trying?
You can see it in action here:
..the bottom bit:
<div id="footer">
gggg
</div>
..anyone got any suggestions? Its annoying - cos its fine in FF2 and 3, IE 6 and 7 - just not IE 8 (man, I hate M$ sometimes :/)
TIA!
Andy