internet explorer 7 - Elements disappearing on IE7 window resize -


i coding web page. http://www.nomizine.com/misc/tbs/default.html

it renders everywhere except ie7. when resize browser window, top navigation, compass on left , subscribe block on right disappears.

any idea how fix it? btw, have tried haslayout tricks zoom:1, clear:both etc nothing seems work.

i believe issue fact compass absolute positioned container (the td in case) not absolute or relative positioned..

since absolute positioned elements positioned in relation nearest relative or absolute positioned parent, ie7 messes when trying reclculate (due resize) put element..

i suggest wrap #compass div div has position:relative

[edit]

ok culprit #header_bg rule in css file.. remove position:relative , normal :)

#header_bg{    background: url(../images/header_bg.png) no-repeat center top;    /*position:relative;*/  } 

Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -

openssl - Load PKCS#8 binary key into Ruby -