What's New - December 04, 2017



  • Blog post: Dropdown Menus: Tips and Tricks – Part 2

    In Part 1, I have highlighted some tips and tricks to get a website menu more user-friendly. In this part, I will continue talking about other useful tips and tricks to get a website menu even more attractive to website visitors.


    Dropdown Menus: Tips and Tricks – Part 2

    Contents:

    • Headers and Separators
    • Web Fonts
    • Multi-color icons
    • Menu with Logo Image
    • etc.

    Read More: https://www.dropdownmenugenerator.com/blog/menu-tips-2.aspx



  • New JavaScript method: dm.ApplyCSS(MenuName, ClassCSS);

    Menu Generator gives you a wide variety of ways to customize the appearance of your menu. An additional level of customization can be reached using CSS code. To apply a custom CSS class to the menu, just run the "dm.ApplyCSS(...);" JavaScript method.

    For example, to apply the "Border" CSS class to the "MyMenu1" menu, use the code below:

    <script type="text/javascript" src="./MyMenu1/MyMenu1.js"></script>
    <div id="MyMenu1"></div>

    <style type="text/css">
    .Border
    {
      border:solid 1px #587DBC;
    }
    </style>

    <script type="text/javascript">
      dm.ApplyCSS('MyMenu1','Border');
    </script>




  • Live Demo: CSS customization




    This example shows the menus (including code samples) that are customized with the additional CSS code:

    • Border
    • Rounded Corners
    • Blurred Borders
    • Transparent Gradients
    • etc.

    Live Demo: https://www.dropdownmenugenerator.com/demos/customcss/index.htm



  • JavaScript methods: dm.HideItem(...); and dm.ShowItem(...);

    The dm.HideItem(MenuName, ElementID); method hides the selected element.
    The dm.ShowItem(MenuName, ElementID); method shows the hidden, selected element.



  • Extended the JavaScript method: dm.HighlightItem(...);

    The dm.HighlightItem(...); method now supports highlighting the multiple elements. The syntax:

    dm.HighlightItem('MyMenu5', ['i48', 'i69', 'i106', 'i28']);



  • Added web font: Quicksand

    Menu Generator offers 10+ standard fonts and 50+ of the most popular web fonts.



  • Improvements and bug fixes

    • Interface enhancements to better serve you.
    • Several minor bugs are fixed.


Uploading ...