
Originally Posted by
timhersh
yes, thank you.
Do you notice the tiny gap in the border on the right hand side of the dropdown--where each link is. I'm thinking I need to figure out how to put a border in between each drop down link
Your problem is too many borders - not adding another :)
In the css there is this:
Code:
div#dropMenu li{
border:1px solid #FFE303;
position:relative;
border-bottom:1px solid #FFE303;
border-top:1px solid #FFE303;
list-style:none;
border-right::1px solid #FFE303;
margin:0;
float:left;
line-height:1em;
width:14.08%}
Delete the two lines in red - actually only the 1st one affects things because of the typo in the second one
Regards
David