[EMAIL PROTECTED] wrote: > I think I've run into a another problematic behavior with > IE6's classed divs. > It's the Multiple Class bug but this behavior is new to me.
> #innerWrapper /* the div unclassed */ > width:770px; /* child of innerWrapper */ > #innerWrapper.HOGAR /* 1st instance of the div classed */ > width:770px; /* child of innerWrapper */ > #innerWrapper.sidebarBK /* /* 2nd instance of the div classed > width:770px; /* child of innerWrapper */ You haven't given a URL, so it's quite difficult to be sure of what you want to do, but so far I'm guessing: You have 3 pages, each with an #innerWrapper you want 770px wide, and it has a different class on each page. However, the above mentioned comments let me think you have divs inside of #innerWrapper, and you're just using the wrong selectors. If the latter is the case, just put a space between #innerWrapper and the classname, like so: #innerWrapper .sidebarBK If the former, then it is only the bug playing up, and you can work around it by giving those classnames to the body element of each page, and use selectors like: body.HOGAR #innerwrapper and body.sidebarBK #innerWrapper -- Els http://locusmeus.com/ http://locusoptimus.com/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
