Hi Beatrice,
It worked, but the width of the other dropdown menus has unfortunately been increased as well. Is there a way to prevent that? The CSS I use is:
/* Sub-menu-columns */
.sub-menu {
width: 410px;
}
.sub-menu-columns ul.sub-menu li {
display: inline-block;
float: left;
width: 200px;
}
.sub-menu-columns ul.sub-menu li:nth-child(odd) {
float: left;
margin-right: 10px;
}
.sub-menu-columns ul.sub-menu li:nth-child(even) {
float: right;
}
Thank you in advance.
Octavii