Forum Moderators: not2easy
I am having this weird problem, in which "bulleted" links show up fine in Firefox, IE7 and even IE6-on-Windows-2000 (ver. 6.0.2800.1106).
However, on IE6 ver. 6.0.2900.2180 those same exact bulletted links are hidden (same color as background?) unless I first hover (with the mouse) over them. Thereafter, they remain visible.
Since I don't want to ignore the 20% or so IE6 users out there (and I don't know which version they may have), I need to solve this problem.
The best way to understand and diagnose the problem is by viewing it directly on the test web site, but this might be interpreted as promotion, so I am not posting a direct link right now.
I would appreciate your advice and tips as to how to proceed with this:
Thanks!
Webmaster at SC
As to disappearing content: is a well known problem, didn't know myself different IE versions could react different on it though. Giving "haslayout" often fixes it. (my preferred manner is to use a conditional comment with "zoom:1" in it)
I am relatively a newbie so it will take me a while to study this before posting my first minimal set of anonymous code.
Also, I am embarrassed to admit that this is the first time I encounter the term "haslayout". I googled it and found tons of information about this, but I would appreciate a direct link to an article that best describes your intent in regard to this problem.
Thanks again,
Webmaster at SC
Following the previous tip, I tried putting:
<!--[if lt IE 7]> <style> .gainlayout { zoom: 1; } </style> <![endif]-->
<snip>
But that didn't help.
Posting anonymous and simplified code of my problematic is very difficult, so I will continue searching in the direction you gave.
Thanks!
[edited by: swa66 at 7:18 pm (utc) on April 17, 2009]
[edit reason] URL snipped, only well established authoritative sites allowed. [/edit]
But so far without success. It keeps referring to floats, but as far as I can tell, the problematic part doesn't involve any floats.
However, the symptoms described at this article (including the Peekaboo test page) are exactly what I am experiencing. This is intriguing. I will continue to explore... If you got additional tips, that would be great.
Thanks!
I simply persisted in following the "Using Conditional Comments and Zoom to Fix IE/Win" article. More specifically, using myiehacks.css part.
Initially, I placed in myiehacks.css the following:
.leftBoxContainer {
zoom: 1;
}
So, I delved deeper into the nesting structure:
.leftBoxContainer, .sideBoxContent {
zoom: 1;
}
I am very happy now. :-)