I try to set the background color of the selected item, it works when i enter a named color like 'Black', but when i enter '#DF007A' it does not affect my bgcolor.
Here is my code snipped:
<dx:ASPxMenu ID="ASPxMenu1" runat="server" AllowSelectItem="True"
EnableDefaultAppearance="False" ItemSpacing="5px">
<Items>
<dx:MenuItem>
</dx:MenuItem>
<dx:MenuItem>
</dx:MenuItem>
<dx:MenuItem>
</dx:MenuItem>
<dx:MenuItem>
</dx:MenuItem>
</Items>
<ItemStyle Height="30px">
<SelectedStyle BackColor="#DF007A" ForeColor="White">
</SelectedStyle>
<HoverStyle BackColor="#DF007A" ForeColor="White">
</HoverStyle>
<Paddings PaddingLeft="7px" PaddingRight="7px" />
<Border BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" />
</ItemStyle>
</dx:ASPxMenu>
Thanx