Thank you Sandy - I really appreciate your input although I'm not sure
whether I understand everything.
Anyway, I kind of find a solution - this is what's happening:
<div id="head-banner-wrap">
<h1 id="head-banner-text">Nashville, TN</h1>
<div id="head-banner"> </div>
</div>
I tried to fade in the "head-banner-wrap" - it's positioned relative -
that didn't work in IE while Safari and Firefox were just fine.
When I fade in the "header-banner" which is positioned absolute, it
also works in IE - I don't understand why and unfortunately I'm unable
to fade in the title that's in that container wrap as well - kind of
weird.
On Nov 27, 10:59 pm, Sanford Whiteman <[email protected]>
wrote:
> > Thanks Sanford - what do you mean by "Document in IE8" standards?
>
> There are two different variables: Browser Mode and Document Mode.
> Roughly speaking, BM is governed by the HTTP header or META http-equiv
> X-UA-Compatible (or absence of same), while DM is governed by DOCTYPE
> (or absence of same). The final rendering of a given page depends on
> the "hybridizing" of both vars. MSDN and MSDN blogs get into the
> interactions in much depth.
>
> I used IE Dev Tools to force the latest model of each var (BM in IE 8
> Native, DM in IE Standards) and was able to see your Fx -- suggesting
> that you had something else going on which was creating an unstable
> hybrid, while there are working hybrids on either "side," either more
> BC or less BC.
>
> -- Sandy