Hia,
I'm frustrated with trying to get a navigation console to sit on the bottom center of page. I'm trying to avoid ever having x or y scroll bars on my site. I can get it to work sweetly on IE using
#nav {
position:absolute;
bottom: 0px;
z-index: 4;
left: 50%;
margin-left:-287px;
height: 110px;
width: 100px;
}
but that makes the images on nav console go under the bottom of browser viewport on Firefox by about 10px and enables scrolling across.
I can get it to work perfectly on Firefox by simply changing to
#nav {
position:fixed;
...
}
but that isn't recognised by IE and my console ends up top left of screen. I could complain about IE but I'd rather just get it right for both browers.
The site this is being used on is
any ideas?
russell