faressoft
faressoft

Reputation: 19651

Why elements move when i hovered on anything (Only With IE6)

Take a look : http://www.youtube.com/watch?v=uSmqTdQK3Tk

http://www.faressoft.org/BlueCristalTheme/

Upvotes: 4

Views: 340

Answers (1)

Amit
Amit

Reputation: 7838

IE 6 requires hasLayout to be set to true. Various ways are used to give elements 'true' hasLayout. Some don't affect your design at all.

Try giving your footer, navigation, and main panels a zoom or 1, with the following:

#footer,#main,#nav { zoom: 1; }

If that doesn't work, change zoom: 1; to

height: 1%

That should fix things.

Good luck.

Upvotes: 2

Related Questions