I'm trying to use the menu control for the first time in ASP.NET and everything is fine except for the fact that I can't seem to change the item spacing property. My menu is a horizontal menu where the menu items have come from a sitemap file. I've tried changing the menu item spacing in both the dynamic and state menu item properties but nothing seems to change it. I've also tried changing the item spacing via css but that doesn't work either. Any ideas why this might be?<asp:Menu ID="mnuNavigation" runat="server"
DataSourceID="mnuNavigationDataSource" Font-Names="Corbel" Font-Size="16pt"
Orientation="Horizontal">
<StaticMenuItemStyle ForeColor="White" />
</asp:Menu>
<asp:SiteMapDataSource ID="mnuNavigationDataSource" runat="server"
ShowStartingNode="False" />
View Complete Post