Jump to content

Navigation Problem with Popout Bars


R4nk3d

Recommended Posts

Maybe this should go here....

So I am making a site nav using php and javascript. PHP grabs the links from the mysql database and writes them while javascript makes it so when u hover over the group links, the pages of that group pop out to the right of them. The only problem i am having is the div stretches down I think and so when u hover over one group, then move the mouse down to hover over the next link, it wont let u because ur still on the div. Can you please take a look at it?

http://152.160.5.14/2020comm.com/

 

Heres the javascript code:

	function loadGroup(id)
{
	document.getElementById(id).style.display = "block";
	document.getElementById(id).style.visibility = "visible";
	return 1;
}
function unloadGroup(id)
{
	document.getElementById(id).style.display = "none";
	document.getElementById(id).style.visibility = "hidden";
	return 1;
}

and here is the dynamic style (written by php) for each group, everything stays the same except for the number in the name:

#nav_menu_1 {
				display:none;
				width:auto;
				height:auto;
				margin:0;
				padding:0;
			}
			#nav_menu_1 a {
				display:block;
				width:auto;
				height:auto;
				position: relative;
				top:-30px;
				left:226px;
				z-index:2;
				margin: 0;
				padding:0;
			}

 

and then here is the style in the css file for the nav bar:

#left_nav {
width:225px;
text-align: left;
margin: 0px;
padding: 0px;
padding-bottom:20px;
border-right:solid 1px #000;
vertical-align: top;
padding-top:10px;
}
#navigation {
margin:0;
padding:0;
z-index:20;
}
#navigation div {
margin: 0;
padding: 0;
position: absolute;
visibility: hidden;
}
#navigation div a
{
position: relative;
margin: 0;
padding: 0;
width: auto;
text-align: left;
}
#navigation li {
margin: 0;
padding: 0;
list-style: none;
}
#navigation li a {
margin:0;
padding:0;
display:block;
}

 

 

And in IE, it has the spaces between them, how can i fix that?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.