I am using C1.Web.Command.2.dll, version 2.0.20053.37. In a previous version of the web menu, I was able to display the web menu item as centered and the submenu items as left aligned. The submenu items are correctly aligned based on the HTML below, but the menu item itselft is not aligning at all. Sometimes it displays left, sometimes centered and sometimes right.
The button_Orange class is the graphic that sits behind the menu control and it is aligned right with a text-align=center property.
I appreciate any assistance so that the menu item label of "Communications" is centered with the submenu items aligned left. Thanks! Lynda
<TD align="right" class="button_orange" >
<div class="button_orange">
<c1c:c1webmenu id="C1webmenu2" runat="server"
BorderColor="#004060" BackColor="Transparent"
ForeColor="Transparent" Layout="Horizontal" BorderStyle="None"
ItemStyle-ItemAlign="Center" ItemStyle-Font-Size=13px ItemStyle-Font-Bold=true >
<Items>
<c1c:C1WebMenuItem ClientScripts="" Text="Communications" ItemStyle-ItemAlign="Center" >
<SubMenu SelectedItemStyle-BorderColor="white" ItemStyle-BorderColor="#004060"
ItemStyle-BorderWidth="1px" ItemStyle-BorderStyle="solid" ItemStyle-ForeColor="white"
ItemStyle-BackColor="#004060" MouseOverItemStyle-BackColor="Orange"
ItemStyle-ItemAlign="Left" ItemStyle-Font-Size=13px ItemStyle-Font-Bold=true>
<Items>
<c1c:C1WebMenuItem ClientScripts="" NavigateUrl="SendKudo.aspx" Text="Send Kudo">
</c1c:C1WebMenuItem>
<c1c:C1WebMenuItem ClientScripts="" NavigateUrl="ReportProblem.aspx" Text="Report Problem">
</c1c:C1WebMenuItem>
<c1c:C1WebMenuItem ClientScripts="" NavigateUrl="SuggestionBox.aspx" Text="Suggestion Box">
</c1c:C1WebMenuItem>
</Items>
</SubMenu>
</c1c:C1WebMenuItem>
</Items>
</c1c:c1webmenu></div>
</TD>