Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

menus 3

Status
Not open for further replies.

imadmarie

Programmer
Nov 14, 2001
14
JO
guys, im designing this menu in my web page,
im facing a little problem, this menu can never overlap a (select) object,
no matter what i set the z-index for the objects, the menu can never overlap the select object!!
any suggestions ?!
 
not sur what the tread wullie posted is, but your provlem might be that your not setting the position to absolute try adding this to your css:

position:absolute;
 
You could however hide the select menu.... I know this works in IE and I had reports of it working in a couple obscure versions of Netscape...
Code:
<script language=&quot;javascript&quot;>
function showLAYER(layName)
{
  document.select_menu.menu.style.visibility='hidden';
  document.all(layName).style.visibility='visible';
}

function hideLAYER(layName)
{
  document.select_menu.menu.style.visibility='visible';
  document.all(layName).style.visibility='hidden';
}
</script>
-gerrygerry
Go To
 
Aren't ALL versions of Netscape obscure?
Tracy Dryden
tracy@bydisn.com

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
Tracy, that was very irresponsible of you! I am in the middle of my computer science class right now and I just burst out laughing when I read your post. I have detention thanks to you! LOL That was great! -gerrygerry
Go To
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top