I used a template for a website which had a fixed left div which holds the nav bar. The right div scrolls up and down. Everything was fine until I implemented Flyspeck which is an fckeditor setup with everything done for me. I noticed that it was unable to display the editor properly so any changes made to the page could not be published. After a lot of fiddling around I changed the left nav to position:relative instead of absolute. This then allowed the editor to do its job, although the right div had dropped down the screen to below the last line of text on the left.
I figured the end-user would cope with this. Then I discovered that this is how the site is displayed in IE6. I have tried adding
<!--[if IE 6]>
#sidebar {position:absolute;}
<![endif]-->
But it doesn't seem to have made a difference. What am I missing?
I figured the end-user would cope with this. Then I discovered that this is how the site is displayed in IE6. I have tried adding
<!--[if IE 6]>
#sidebar {position:absolute;}
<![endif]-->
But it doesn't seem to have made a difference. What am I missing?