here is the code to my .aspx page:
<body>
<div class="left">
</div>
<div class="right">
<div class="content">
</div>
</div>
</body>
here is the code to my stylesheet:
.left
{
margin: 0px 0px 0px 100px;
width: 550px;
height: 100%;
float: left;
background-color: #FFFFFF;
}
.right
{
width: 250px;
height: 100%;
float: left;
position: fixed;
background-color: #000000;
}
id like the div tag on the right to stay put, while my content scrolls with the page on the left. im looking for the simplest way to do this with css styling because ive heard it is very possible. i dont want to add a scrollbar or anything, id just like the div tag to act as a large black panel with navigation buttons centered that doesnt move as you scroll.
im building the site for a custom CMS that my fathers company wrote.
would appreciate any help.