Shelly wrote:
> Okay, before I begin, I would just like to say I'm about to kill 
> something - most likely my monitor.  If it had boots, it would be 
> shaking in them right now.

I feel that this is not the right time to say that, but I would locate
IE on a hard disk, not behind the screen.

...
> http://anekostudios.com/test/issue/index.html
> 
> ...
> But IE *&[EMAIL PROTECTED] 6 is $%^&!$# me off.  For the life of me, I cannot 
> get it 
> to align *anything* properly.  And if you'll notice on the right side, I 
> eliminated the drop shadow PNG and replaced it with a gif that's not as 
> pretty.  The reason being: I could see it if I set the wrapper div at 
> 100% height (but then I wouldn't see the left shadow - inner_wrapper). 
> If I set inner_wrapper at 100% height, and not the wrapper, I could see 
> the left shadow.  But if I set *both* at 100% height (or nothing) I 
> would only see the left side shadow, or nothing, respectively.

I'll try to give a reason for the next debugging steps.

Giving height:100% is nothing else that applying haslayout. You should 
apply this to both the
- #innerwrapper (because of the filter: no filter displays without 
haslayout) and the
- #wrapper (because of position:relative : IE tends to get so wrong 
without haslayout).

Check every relatively positioned block and set haslayout there.

Check every float with a margin and add display:inline to prevent the IE 
doubled margin bug.

Check your margin hack for #innerwrapper.  Why do you send margin:
0 37px 0 0 to IE and 0 0 0 -37px to the others? Remove that. First, get 
the wrappers stable, then fix the float bugs, then apply some margin 
hacks. Not the other way round. So check your other margin hacks, too.

Absolutely positioned navigation following a float. Clear the float from 
the a.p. block, or the positioning will go wrong. No a.p. positioning 
without left and top offsets in IE.

You are doing %-margin-moves, but IE does it all wrong. You can stick to 
your hacks, or you must add more innerwrappers with zoom:1 to prevent 
the quirky percentages bugs.

Ingo

-- 
http://www.satzansatz.de/css.html

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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/

Reply via email to