Link to home
Start Free TrialLog in
Avatar of nsitedesigns
nsitedesignsFlag for United States of America

asked on

Drop downs disappear

Drop downs disappear from the navigation bar on left.  You should see some under Programs/Schedules.  How do I get that to display?

http://nsitedesigns.com/nsitedesigns/ymca/test.html
http://nsitedesigns.com/nsitedesigns/ymca/test.css
Avatar of nsitedesigns
nsitedesigns
Flag of United States of America image

ASKER

here is css
/* ............ NAVIAGTION ................ */

#main_stage #sidebar1 ul#nav li:hover ul, li.over ul { display: block; }

ul#nav {
	width: 200px; /* Width of Menu Items */
	float:left;
	position:relative;
	padding-top:20px; /*pushes nav bar down the page*/
	
	} 

ul#nav li {
	line-height:1.4em;
	list-style: none;
position:relative;
	}
	
/* drop downs */
ul#nav li ul {
	position: absolute;
	left: 132px;/* position of drop downs next to main nav bar */
	top: 0;
	display: none;
	width:150px;
	}

/* Menu Items */
ul#nav li a {
	background: #fff; /* IE6 Bug */
	display: block;
text-decoration:underline;
	color: #0d4c76;
	padding: 4px 0px 4px 25px;
	font-size:.9em;
	font-weight:bold;
	font-family:Verdana, Geneva, sans-serif;

	}

/* Fix IE. Hide from IE Mac /
* html ul#nav li { float: left; height: 1%; }

 html ul#nav li a { height: 1%; }*/



/* Hover Styles */
ul#nav li a:hover {
	color: #0d4c76;
	background-color:#FF9; 
	background-image:url(img/arrows.gif);
	background-repeat:no-repeat;
	background-position:left center;

} 
	

/* Sub Menu Styles */

li ul li a { 
padding: 7px; 
margin-left:2px;
background-color:#FF9;} 
		


#main_stage #sidebar1 ul#nav li:hover ul, li.over ul { display: block; }

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of LZ1
LZ1
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
Weeeee!  Yahoo!  That did it!!!!!  

Thanks LZ1
Not a problem.  Always glad to help.
I submitted another ticket.  Look  for it.  The arrows are disappearing from the drop downs in any position other than the first position.