Here is the page in question...
[
pr-tech.com...]
What I am trying to accomplish here is to make the left hand column (navigation) and the right hand column (slideshow) scroll with the page. I would like to do this purely in CSS if possible.
I have played around with it by making the #left-column div have a fixed position but this just causes styling issues since the rest of the content is mostly floating divs.
I am trying to do this in the easiest way possible so I thought I would ask for some input. When I add something like...
#left-column {
position: fixed;
top: auto;
left; auto;
}
That kind of makes it work except now the center column gets pushed all the way to the left and overlaps it. Anyhow, I'm scratching my head here trying to figure it out so any input is greatly appreciated!
Thanks in advance!