On 10/15/07, David Laakso wrote:
> In this photoshop nightmare [1] the slideshow (top right col) collapses
> in IE 6 & 7 when any horizontal nav link is clicked (in compliant
> browsers clicking 'home' does it).

I suspect an interference between of the menu js and the slide show.
The behaviors related to the dropdown are attached to all LI in the
document, including the ones in the slide show. And when an element of
the dropdown gets focus the cleanUp function alters the className of
all LI, again including the slideshow. I would change the occurrences
of:
        var LI = document.getElementsByTagName("li");
with
        var me = document.getElementById("menu");
        var LI = me.getElementsByTagName("li");
so to affect only the LI inside the drop down menu.
(The difference in behavior between IE and other browsers is caused by
the use of firstChild and white-space interpretation in building the
DOM.)


> And IE 6 & 7 the left col is exhibiting vertical bounce on a full scroll.

The left column seems stable to me, probably I haven't understood the
problem, what do you mean with "full scroll"?


> [1] <http://www.chelseacreekstudio.com/ca/cssd/un/>


Best regards,
Bruno

-- 
Bruno Fassino http://www.brunildo.org/test
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to