ul li {
line-height: 50%;
}That was also my thoughts but it had no effect and I don't want to add <divs> around the list.
That totally worked for me, as did just ul (without the li).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just add a CSS macro:
li {
line-height: 200%;
}You could also put each list in a div macro and have the CSS change the line spacing of each div individually by targeting the class of each div.
.tight {
line-height: 70%;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.