At the top of the page, you have:
Code:
<link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-base.css" />
<link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-topbar.css" />
<link rel="stylesheet" type="text/css" href="ddlevelsfiles/ddlevelsmenu-sidebar.css" />
You can delete the highlighted, and also get rid of ddlevelsfiles/ddlevelsmenu-sidebar.css. It is not needed.
Now, in ddlevelsfiles/ddlevelsmenu-base.css, find this code:
Code:
.ddsubmenustyle li a {
background-color: #F0F0F0;
color: #000000;
display: block;
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
margin: 0;
padding: 5px;
text-decoration: none;
width: 160px;
}
And fix it to this:
Code:
.ddsubmenustyle li a {
background-color: #F0F0F0;
color: #000000;
display: block;
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
margin: 0;
padding: 5px;
text-decoration: none;
width: auto;
}
Bookmarks