Click to See Complete Forum and Search --> : CSS IE Drop-Down Menu


JTiggerr98
03-04-2006, 02:12 AM
I've been working on this drop down menu for a long time now. I'm really close but not close enought to satisfy me.

The problem is I can't seem to get IE to display the CSS menu like firefox, Netscape, or Safari for that matter.

I'm using a hover.htc file that I got from another website about creating CSS menus that would work for IE, Firefox, and the rest.

Will someone please take a look at the site and help me out here. The address is www.members.cox.net/wedding_testing/welcome2.htm.

Any help or suggestions would be greatly appreciated. I would rather not create a menu based purely on Java script.

John

ray326
03-04-2006, 09:48 PM
Not Found
The requested URL /wedding_testing/welcome2.htm was not found on this server.

Apache/1.3.26 Server at members.cox.net Port 80

JTiggerr98
03-05-2006, 01:34 AM
Sorry Ray236. It up again, I accidently took it down. Hopefully I didn't waste your time.

www.members.cox.net/wedding_testing/welcome2.htm

JJ

ray326
03-05-2006, 10:57 PM
Looks like typical IE positioning problems. For some reason Fx isn't running in standards mode but I don't know why. You might try the !important hack to set the position "wrong" for IE.

JTiggerr98
03-05-2006, 11:34 PM
Ray,

How do I go about doing that?

John

ray326
03-05-2006, 11:44 PM
In a style you use, e.g.

left: 100px !important; /* locked for real browsers */
left: 120px; /* used by IE */

u_make_hulk_mad
03-07-2006, 08:17 AM
i'm assuming you don't want the drop down to start from the middle of the
link. if that's the case, you have to define how far from the left you wan to
start the dropdown. i can't see your css so the best i can do is show you
what worked for me.

#menuh ul ul
{
position:absolute;
left: 20;
z-index:500;
top:auto;
display:none;
padding: 1em;
margin:-1em 0 0 -1em;
}