PDA

View Full Version : Positioning in IE


Xeor
04-02-2006, 06:24 PM
Hi there,

I'm currently developing a website for a electronics company.
If you view the website in Firefox it's perfectly aligned and everything is at the position where it should be.
BUT, when I opened it in Internet Explorer 6 then my menu hides behind the content, how can i solve this??

Lay-Out here: Keklikflex (http://keklikflex.nl/lay/)
CSS file: Style.CSS (http://keklikflex.nl/lay/css/style.css)

VIPStephan
04-02-2006, 06:32 PM
Generally it's not a good idea to use positioning as excessively as you did. This can be achieved differently with much more flexibility. But ok, to solve your immediate problem:

Float the sidebar-a to the left (using float: left;), set a width to it (as much as the menu is wide), delete the absolute positioning and clear the footer (with clear: left;).
I haven't tried it and I hope the positioning of all the elements won't screw it up but try it and ask if you experience more problems.