SOLVED!
And in case someone encounters my same problem - in the
CSS section of the "head" portion of the code, look for:
- Code: Select all
.dhtmlgoodies_subMenu ul li a{ /* Sub menu items */
white-space:nowrap; /* No line break */
text-decoration:none; /* No underline */
color:#000; /* Black text color */
height:16px; /* 16 pixels height */
line-height:16px; /* 16 pixels height */
padding:1px; /* 1px of "air" inside */
display:block; /* Display as block - you shouldn't change this */
}
...and erase the
display:block; line. At that point, the submenu entries will display as a long long line - you will have to use <br /> to start new lines.