Hi
ul.first-level[class*="zen-menu"] { list-style-type: none; margin-left: 0px; line-height: 1.7em; }
how can i set a different line-height for menu entries with two lines :
thx a lot
wismasa Hi you have this code in custom.css
/*submenu zeilenhöhe*/ .moduletablezen-menu-vertical{ line-height: 1.7em; } increase line height value to add more space.
/*submenu zeilenhöhe*/ .moduletablezen-menu-vertical{ line-height: 1.7em; }
thx for reply i know, but i try to set a different line height value for one line > line-height: 1.7em; and a second line height for menu points that breaks in multiple lines like the example. regards marc
wismasa Hi. What I would advice is to use code like:
.moduletablezen-menu-vertical li { line-height: 110%; padding: 5px 0; }
Hi wismasa You can use this code
.moduletablezen-menu-vertical li.item-4320 { list-style-type: none; margin-left: 0px; line-height: 2.7em; }
You can see the item id here : http://prntscr.com/mgb6dw for new items.
Regards
Thx for the hint
works global with
.moduletablezen-menu-vertical{ line-height: 1.3em; }
.moduletablezen-menu-vertical li { list-style-type: none; margin-left: 0px; padding-bottom: 11px;
regards marc