Log in

View Full Version : Why is the panel coming down behind the three columns?



ajfmrf
01-21-2011, 06:38 PM
Is it the css coding that is causing this?
http://www.web-user.net/test/1/test2.html


here is the page source:
http://www.web-user.net/test/1/test2.txt


http://web-user.net/test/1/jkpanel.js
http://web-user.net/test/1/jquery-1.2.2.pack.js
http://web-user.net/test/1/layout.css

I am planing to apply this to a webpage I have been working on for a while but have not figured out all of the bugs yet.:)

Bud

azoomer
01-22-2011, 12:05 AM
If you add a z-index of say 10 to the dropdown panel it will stay in front of the columns


#dropdownpanel{ /*Outermost Panel DIV*/
position: absolute;
width: 100%;
left: 0;
top: 0;
visibility:hidden;
z-index: 10;
}