Try this:
Remove position: relative from here:
Code:
ul.navigation {
float: left;
list-style: none outside none;
margin: 0;
padding: 0;
position: relative;
}
and here
Code:
ul.navigation li {
list-style: none outside none;
margin: 0;
position: relative;
}
and remove the left: -167px setting from here:
Code:
body.custom #navigation ul li ul {
-moz-box-shadow: 4px 1px 5px #626037;
background-color: rgba(130, 128, 55, 0.9);
height: 46px;
left: -167px;
padding-left: 19px;
width: 881px;
}
That will position the dropline in relation to the navigation div, which is where you really want it.
Bookmarks