Hi
You have this in your css:
Code:
.droplinebar ul li ul{
position: absolute;
margin-left:-365;
z-index: 1000;
top: 0;
left: 0;
float: left; /* i added this*/
background: #ffffff; /*sub menu background color */
visibility: hidden;
}
Try to add px to the -365 like this:
Code:
.droplinebar ul li ul{
position: absolute;
margin-left:-365px;
z-index: 1000;
top: 0;
left: 0;
float: left; /* i added this*/
background: #ffffff; /*sub menu background color */
visibility: hidden;
}
I would expect that to help.
Bookmarks