Information
- Designer
- haran
- Date
- October 29, 2004
- Rating
- 0.00000000
- Downloads
- 20377
- Validation
- XHTML 1.0 Transitional
- Uses CSS
- Yes
Designer Notes
Not available.
Design Comments
Add Your Comment
Only the OSWD community is allowed to comment on designs. If you have a user account, please login now in order to add a comment. If not, why not Register?
Folkenda
Very Nice !
HEre is a little Javascript I wrote to avoid footer being displayed over menu if menu's height is bigger than main's height
window.onload=function(){
var menu = document.getElementById('side-bar');
var main = document.getElementById('main-copy');
if (menu.offsetHeight > main.offsetHeight) {
main.style.height = menu.offsetHeight+10+"px";
}
}