Is anybody familiar with how I can remove the "arrow" images from my menu control (ASP.NET 2.0)
See attached image.
Printable View
Is anybody familiar with how I can remove the "arrow" images from my menu control (ASP.NET 2.0)
See attached image.
Bueller....Bueller...
I don't get those images in mine, post the control source. Here's mine:
Code:<asp:Menu ID="Menu1" runat="server" Height="20px" Orientation="Horizontal" Width="311px">
<Items>
<asp:MenuItem NavigateUrl="/" Text="Home" ToolTip="Home" Value="Home"></asp:MenuItem>
<asp:MenuItem NavigateUrl="http://www.panteravb.com" Text="About" ToolTip="About panteravb.com"
Value="About"></asp:MenuItem>
</Items>
</asp:Menu>
Yours doesn't appear to have subitems...Mine does.
Example:
Code:Departments
-List Departments
-Add Department
changing PopOutImageUrl on the top level menu item changes that arrow. seems kinda stupid, looks like you'd have to point that at blank gif to get it to not show.
I finally got back to this and I discovered what it was.
Setting the "StaticEnableDefaultPopOutImage" property to False removes the default arrows that get displayed.
These property names just get bigger and bigger. :sick: