Is it possible to write a custom css for the main menu component (what are the style attributes to be defined ?)
If I use ElementClassName I can have some properties redefined (font, background ...) but lose some others (hover background ....)
Many thanks Bruno.
How customize items font ?
Hi Guido,
You can modify the item font by adding some css to the unit's HTML file.
Example:
    <style>
    label.drop-label {
      color: red;
      font-weight: bold;
      font-size: 1.2em;
      font-family: Serif;
    }
    </style>