Example: http://betafreshmedia.com/nathan/coffee.html
When you click a category, I want the dropdown to appear ABOVE the rest of the categories. Right now everything is position:relative so they shift around to accomodate the <ul>. I’d like to use position:absolute with a z-index, but can’t seem to get it to work. Please note the javascript at the end of <body> has to correspond with whatever we decide to do.
Thanks!
Just take the
z-indexoff the trigger divs, and useposition: absoluteon theuland it’ll work. Only ever usez-indexif you have to. If elements don’t explicitly requirez-index, don’t set it.