Link to home
Start Free TrialLog in
Avatar of mileHighBlogger
mileHighBloggerFlag for United States of America

asked on

Drop down menu hiding underneath marquee (CSS)

I have a scrolling marquee. when the drop down menu extends, couple of the items gets hidden underneath the marquee container. when i define z-index:-1 then the marquee container disappears on the screen. does anyone have a suggestion for this?
thanks.
btw. it only happens in IE

http://gcterminal.mallfinder.com/index.cfm?refresh=1&showdebug=1

this is the definition for the container



            #marqueecontainer{
            position: relative; left:0px;
            width: 80px; /*marquee width */
            height:100x; /*marquee height */
            background-color: ##A1948C;
            overflow: hidden;
            border: 1px solid orange;
            padding-left: 0px;
            padding-top: 0px;
            padding-right: 0px;
            padding-bottom: 0px;
            z-index:1;
                              }
ASKER CERTIFIED SOLUTION
Avatar of Mark Steggles
Mark Steggles
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mileHighBlogger

ASKER

thanks Steggs. The relative positioning was the problem. I had to do some more tweaking in order show correctly on mozilla.
your welcome