Hi,
I'd like to know if this is possible to have a 100% height layout using css.
I'd like to have the footer fixed at the bottom of the page (screen) when there's not enough content in a post/page.
I tried :
html, body {
height: 100%;
margin: 0;
}
#global {
min-height:100%;
}
where div#global is placed like this in header.php and footer.php
header.php
----------------
<body id='top' <?php body_class($k_body_class);?>>
<div id="global">
....
footer.php
----------------
...
</div> <!-- GLOBAL DIV -->
</body>
But it doesn't really seem to work and I can't figure how to do that...
Is there a way to do this ?
Best regards
PS: thank you for this amazing theme !














