Specifically, to change the color of the links within the drop down menu, add the line in red below:
Code:
#dropmenudiv a{
width: 100%;
color: green;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
}
You can increase the vertical offset of the drop down menus relative to the anchor links, but if you increase it by too much, the menu will disappear as soon as the mouse rolls out of the anchor link, before it reaches the menu itself. With that said, make the changes in red:
Code:
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+3+"px"
Where 3 would be 3px extra.
Bookmarks