Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 2.27 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Floating asp.net 4.0 menuitem
  2. <asp:menu id="NavigationMenu1" CssClass="menu1" orientation="Horizontal"
  3.   target="_blank"
  4.   Font-names="Arial, Gill Sans"
  5.   Width="800px"
  6.   runat="server">
  7.  
  8.   <LevelMenuItemStyles>
  9.     <asp:MenuItemStyle CssClass="level1"/>
  10.     <asp:MenuItemStyle CssClass="level2"/>
  11.     <asp:MenuItemStyle CssClass="level3" />
  12.     <asp:MenuItemStyle CssClass="level4" />
  13.   </LevelMenuItemStyles>
  14.  
  15.   <StaticHoverStyle CssClass="hoverstyle"/>
  16.  
  17.   <items>
  18.     <asp:menuitem text="Home" tooltip="Home">
  19.     <asp:menuitem text="Section 1" tooltip="Section 1">
  20.       <asp:menuitem text="Item 1" tooltip="Item 1"/>
  21.       <asp:menuitem text="Item 2" tooltip="Item 2"/>
  22.       <asp:menuitem text="Item 3" tooltip="Item 3"/>
  23.     </asp:menuitem>
  24.     <asp:menuitem text="Section 2" tooltip="Section 2">
  25.       <asp:menuitem text="Item 1" tooltip="Item 1"/>
  26.       <asp:menuitem text="Item 2" tooltip="Item 2">
  27.         <asp:menuitem Text="Subitem 1"/>
  28.         <asp:menuitem Text="Subitem 2" />
  29.       </asp:menuitem>
  30.       <asp:menuitem text="Item 3" tooltip="Item 3"/>
  31.     </asp:menuitem>
  32.   </asp:menuitem>
  33.     <asp:menuitem text="Home 1" tooltip="Home">
  34.     </asp:menuitem>
  35.     <asp:menuitem text="Home 2" tooltip="Home">
  36.     </asp:menuitem>
  37.     <asp:menuitem text="Home 3" tooltip="Home">
  38.     <asp:menuitem text="Section 1" tooltip="Section 1">
  39.       <asp:menuitem text="Item 1" tooltip="Item 1"/>
  40.       <asp:menuitem text="Item 2" tooltip="Item 2">
  41.           <asp:menuitem text="Item 2" tooltip="Item 2">
  42.             <asp:menuitem Text="Subitem 1"/>
  43.             <asp:menuitem Text="Subitem 2" />
  44.           </asp:menuitem>
  45.     </asp:menuitem>
  46.  
  47.  
  48.       <asp:menuitem text="Item 3" tooltip="Item 3"/>
  49.     </asp:menuitem>
  50.     </asp:menuitem>
  51.     <asp:menuitem text="Home 4" tooltip="Home">
  52.     </asp:menuitem>
  53.   </items>
  54. </asp:menu>
  55.        
  56. .level2
  57. {
  58.     color: Blue;
  59.     font-family: Gill Sans MT !important;
  60.     font-size: medium;
  61.     background-color: Gray;
  62. }
  63.  
  64. .level3
  65. {
  66.     color: black;
  67.     background-color: Silver;
  68.     font-family: Gill Sans MT !important;
  69.     font-size: small;
  70. }
  71.  
  72. .hoverstyle
  73. {
  74.     font-weight: bold;
  75. }
  76.  
  77. .level4
  78. {
  79.     background-color: Gray !important;
  80.     color: red !important;
  81.     font-size: small;
  82.     float:left !important;
  83.     text-align:left !important;
  84.     margin: 4px 4px 4px 4px !important;
  85. }