Initially, I've reviewed the following articles in order to refresh my knowledge on these topics as I have encountered them before:
Position Relative / Absolute / Fixed in IE
While the above resources may be helpful for individuals facing these issues for the first time, I am currently experiencing the following problems in All non-IE browsers:
[image]
And the following issue specifically in IE7
[image]
I am aware that I need to activate hasLayout = true
on the large brown <div id="footer">
because its current position: relative
setting is causing hasLayout = false
in IE7. I have attempted using zoom: 1
, and display: inline-block
to trigger hasLayout on #footer
but without success.
You can view the live site here:
The root of the vanishing div problem lies in the fact that hasLayout is presently set to false
on #footer
.
How can I successfully trigger it?!