Hello,
It is not an issue, the menu works in this way. It doesn't provide ability to fit width of sub-menu items to parent width. Width of sub-menu items can be changed manually for each sub-menu one by one. For this use the next CSS rule:
Code: |
.ux-menu LI.ux-menu-itemITEMID .ux-menu-sub LI
{
width: 200px !important;
}
|
Where ITEMID is ID of parent menu item. In your case you can add the next CSS rules:
Code: |
.ux-menu LI.ux-menu-item11 .ux-menu-sub LI
{
width: 97px !important;
}
.ux-menu LI.ux-menu-item17 .ux-menu-sub LI
{
width: 108px !important;
}
|
Regards,
ARI Soft