I am using Smartmenus to build a user interface for a Web mapping application. My effort so far is available at http://pages.towson.edu/morgan/smartmenus/index.htm. I’m hoping someone can help me with a question. That is, how can I set different widths for the “Base Map”, “Overlay Maps”, and “Bookmarks” dropdowns? I have tried to figure this out myself, but I have hit a brick wall. Thanks.
Hi Jay! You could either use the following option subMenusMaxWidth: '' (hmm, maybe we should consider this as default instead of subMenusMaxWidth: '20em' which is used now) or if you would like to remove the max-width just for the mega sub menus, you could use the following rule:
ul.mega-menu {
max-width:none !important;
}
Cheers!
PS: After that you custom width settings will take effect.