Variable Width Sub-menus
By default, sub-menus in Construct are 16em wide. You can easily change them to be another width, by declaring it in your custom style sheet, or you can override this declaration so that each sub-menu is automatically sized based on it's widest item.
To do this add the following CSS to your custom style sheet.
ul.menu ul {
width: auto;
}
ul.menu ul li a{
white-space:nowrap;
}
