Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
475
Trouble getting a transparent TopMenu!
posted

Hi!

I'm converting from UltraWebMenu to WebDataMenu but I'm having trouble getting the menu to be transparent for the TopMenu items. With the UltraWebMenu the IslandCss could be set using background-color: Transparent, but with the WebDataMenu  I have tried to set the backColor to Transparent and also set an CssClass to the menu that has background-color: Transparent; and background-image: none;  but nothing seems to get rid of the gray background of the menu.

How can it be done?

  • 4493
    Verified Answer
    posted

    Hello,

    Currently you can redefine one of the control's main CSS Classes to achieve your goal.
    For example you can redefine igdm_ControlHorizontal, of your menu is Horizontally oriented:

     

    <style type="text/css">
    .igdm_ControlHorizontal
    {
      background-color: Transparent;
      background-image: none;
    }
    </style>

    Or you can redefine igdm_ControlVertical if your control is redered vertically. Just make sure to include these styling overrides at the bottom of the page.

    Also the CssClass property should be working but there seems to be some issue which we addressed and will try to cover for the next HotFix.