If you doesn't want to use "Auto width" parameter and want to set specific width for specific sub-menu, use the next CSS rules:
Code: |
LI.ux-menu-item[PARENT_MENU_ITEM_ID] .ux-menu-sub,
LI.ux-menu-item[PARENT_MENU_ITEM_ID] .ux-menu-sub LI
{
width: 250px;
}
|
Where [PARENT_MENU_ITEM_ID] is ID of parent menu item. It can be found in Joomla! menu manager. For example if menu parent ID is 219, use the next CSS rules:
Code: |
LI.ux-menu-item219 .ux-menu-sub,
LI.ux-menu-item219 .ux-menu-sub LI
{
width: 250px;
}
|
Regards,
ARI Soft