Hi i'm new here
I have a menu, built using asp:menu and asp:menuitem, which is located on a master page. The interface of the menu is built using .gif images set using the css background-image property
E.G
<asp:menu id="menu1" runat="server" Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/Information.aspx" text="information" value="information"/>
</Items>
<StaticHoverStyle CssClass="menuHoverStyle">
<StaticSelectedStyle CssClass="menuSelectedStyle">
</asp:menu>
It is is the style sheet that the images are changed.
Heres my problem; only a portion of the background image is being displayed. This is because the image is bigger than the text in the link.
Is there a way in which I can increase the size of each <asp:menuitem> in the menu to be the size of the image. Also what is the property to remove to blank space between each menu item when the orientation of the menu is horizontal.
Reagards
Leoforio