____________________________________________
                From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Cole Kuryakin
                Sent: Tuesday, August 26, 2008 4:41 PM
                To: [email protected]
                Subject: [WSG] Pop-Up Menu From Footer and IE7 Problem
                

                Hello All -

                I've got a POP UP menu that appears on hover from a footer
navigation UL. This menu contains language names so the user can view site
content in different languages.

                To see it working in FF and IE6 go here:
http://www.koisis.com/.framework/-public/index.php and hover over the
"Language" menu item in the footer area.

                I was able to get to this point by declaring:

                #navFooter li ul {
                        position: absolute;
                        left: -10000px;
                        top: -10000px;
                }

                And then.

                #navFooter li:hover ul {
                        left: -2px;
                        top: -195px;
                        z-index: 100;
                }

                
Try this:
#navFooter li ul {
  position: absolute;
  left: -1000em;
  z-index: 10;
  bottom:0;
}

#navFooter li:hover ul {
  left: -2px;
}

Do not use "top" anywhere. 
As a side note, I'd use the least amount of declarations possible in the
":hover" rule.


-- 
Regards,
Thierry | http://www.TJKDesign.com







*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to