I am trying to vertical align my text in a aspxmenu that has a height set at 75 px and menu is built from database that all works fine
No matter what I do the text is aligning to the top of the menu: - any suggestions? - I tried the css answer and that did not work
<div style="vertical-align: middle; margin: 0; padding: 0px; padding-left: 20px; padding-right: 20px; background-color: #3498db">
<dx:ASPxMenu ID="menuActionItems" EnableAdaptivity="True" ItemSpacing="20px" AllowSelectItem="True" EncodeHtml="False"
Border-BorderStyle="None" Width="100%" Height="75px" runat="server" BackColor="#3498DB" ForeColor="White">
<ItemStyle Height="75px" VerticalAlign="Middle" HorizontalAlign="Center">
<Paddings Padding="0" />
<HoverStyle BackColor="Green"></HoverStyle>
<SelectedStyle ForeColor="white" Font-Bold="true" BackColor="Transparent" Border-BorderStyle="None">
<Border BorderStyle="None"></Border>
</SelectedStyle>
</ItemStyle>
<Border BorderStyle="None"></Border>
</dx:ASPxMenu>
</div>