Hi all. Did a search but couldn't find any help so thought I'd ask. This is my first experience with CSS and I'm working on converting a site with frames to css.
Code:
#Nav {
position:absolute;
position:fixed;
top:0px;
left: 0px;
width:120px;
height: 100%;
padding:1px;
background-color:#0099FF;
border:2px solid black;
}
#Content {
margin:0px 0px 0px 125px;
padding:1px;
}
I want a fixed nav bar on the left and this code works fine in NS but IE doesn't support fixed, when I use it the nav box gets stacked on top of the content box, and if I don't use it of course the nav bar scrolls with the page. Anyone know of a way around this?
Thanks.
|