spacer
Website Design

Get Adobe Flash player Install latest flash player if you can't see this gallery.


Useful Articles
  
Spotlight

Get Adobe Flash player Install latest flash player if you can't see this gallery.

  
Forum
 
  Forum  DotNetNuke Modu...  janet.Menu  remove the bottom border showing under each level zero
Previous Previous
 
Next Next
New Post 11/13/2007 8:39 PM
  webmonkey
5 posts


remove the bottom border showing under each level zero 

Under each of my level 0  menu items there is a bottom border showing.

however I have removed all borders from the style sheet. 

how do I remove this light grey line under each level 0 item.

 

under each level one

 
New Post 11/21/2007 11:41 AM
  neil
111 posts
www.janetsystems.co.uk


Re: remove the bottom border showing under each level zero 

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

 
Previous Previous
 
Next Next
  Forum  DotNetNuke Modu...  janet.Menu  remove the bottom border showing under each level zero