Hi
I've almost got my site ( http://matix.co.uk ) working in Firefox, but the javascript to adjust the height of the divs still isn't working
the javascript:
Code:
function height(){
if( typeof( window.innerWidth ) == 'number' )
{ h = window.innerHeight; }
else if( document.documentElement && ( document.documentElement.clientHeight ) )
{ h = document.documentElement.clientHeight; }
else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
{ h = document.body.clientHeight; }
var e = document.getElementById("content");e.style.height = h -212
}
yeah, when I was using tables someone suggested doing that with the middle row ( http://www.webmaster-talk.com/showthread.php?t=11215 ), but I couldn't get it to work and I was told there were cross-browser problems.....
Thanks though, I'll give it a try and see if it works!