side ways scrolling to view css drop down doesn't always work -


i'm having trouble the following css. when scroll side ways drop down menu doesn't display drop down. have attempt multiple times working.

any appreciated, thanks.

please see here real time view.

my code below:

#navmenu{      margin:0;     padding:0;  }  #navmenu ul{     margin:0;     padding:0;     line-height:30px;  }  #navmenu li {     margin:0;     padding:0;     /*removes bullet point*/     list-style:none;     float:left;     position:relative;     background: #fff;    }     /*for top level */ #navmenu ul li a{     text-align:center;     font-family:"calibri";     text-decoration:none; /*remove underline*/      margin:-1px;     /*height width links*/     height:30px;     width:150px;     display:block;     /*border-bottom: 1px solid #ccc;*/        color: #777;   }         /* hiding inner ul*/ #navmenu ul ul{     position:absolute;     visibility:hidden;     /*must match height of ul li a*/     top:32px;   } /*selecting top menu display submenu*/  #navmenu ul li:hover ul{     visibility:visible;    }  #navmenu li:hover{     /*background-color: #f9f9f9;*/     background-color: #596c56;     }   #navmenu ul li:hover ul li a:hover{     /* color: e2144a;*/       color:blue;  }  #navmenu ul li a:hover{         /*color: e2144a;*/         color:#ffe303; } 

try decreasing top of #navmenu ul ul.

#navmenu ul ul{     position:absolute;     visibility:hidden;     /*must match height of ul li a*/     top:29px;     background:#333; } 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -