[EMAIL PROTECTED] wrote:
> The "drop-up" menu should align-left with the nav item it relates to,
>  but in IE it is too far right.  What am I overlooking?

That IE has another default for 'left: auto' than other browsers. Proper
positions are needed.

> http://raydunetz.com/index.php

Create a relation between relevant list-item and the drop-up, and
position the drop-up from bottom of list-item.

Complete styles for relevant elements...

#nav li { float:left; margin:0 2px 0 0; padding:0;
text-transform:uppercase; position: relative;}

#nav li ul { display:none; position: absolute; bottom: 90%; left: 5px;
list-style: none;  margin: 0;}


Before further testing, make sure to _delete_ these "auto-positions"
that IE trip on...

#nav li > ul { top:auto; left:auto; }


The added advantage of these corrections is that the line-up between
menu and drop-up won't change with font-resizing, even though it may
look just as odd as before.


IE6 needs a "whatever:hover" or something, but I guess you know that.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
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