Changing the style within the ASP.Net Menu Control

dirtyv

New Member
I've been having a problem with my menu control with the drop down menu with the background color staying white, when I want it to be yellow. I've tried changing some of the properties options so that the BackColor would be "yellow", but it still persists to be white. I've noticed that the menu color without hovering over any links is yellow, but the drop down menu is white. This is what I have in the control:\[code\]<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" BackColor="Yellow" EnableTheming="True" Orientation="Horizontal"> <StaticMenuStyle BackColor="Yellow" /> <StaticSelectedStyle BackColor="Yellow" /> <StaticMenuItemStyle BackColor="Yellow" /> <StaticHoverStyle BackColor="Yellow" /></asp:Menu>\[/code\]The control is using a static view, but changing those BackColors didn't help much either.Also, is it possible to remove those "Arrow" images beside each link that has a drop down list? I figure it has something to do with the style properties, but I'm unsure.
 
Back
Top