Hello,
The following code is taken from a site using the menu, with no borders between the top menu items.
.janetMenu_SectionStart
{
height: 0px;
}
.janetMenu_SectionDivide
{
height: 0px;
background-color:#D3DBDB;
}
.janetMenu_SectionEnd
{
height: 0px;
}
.janetMenu_ItemStart
{
height: 0px;
}
.janetMenu_ItemDivide
{
height: 0px;
background-color:#D3DBDB;
}
The background colour in the example above was set to match the containing page element:
<tr>
<td bgColor="#d3dbdb">
<janet:menu id="Menu" IconDot="menu_whitedot.gif" IconDotSel="menu_orangedot.gif" IconDown="menu_orangeArrowD.gif" IconDownSel="menu_orangeArrowD.gif" IconRight="menu_blueArrowR.gif" IconRightSel="menu_orangeArrowR.gif" runat="server" Style="parent" options="icons=true,ItemDivide=true" icons="false" indent=" " omithome="false"></janet:menu>
</td>
</tr>
Neil