css- line spacing

jthomas4 / 2008-05-25 17:19:09   

Im trying to get some more line spacing in my menu of exhibits - where in the style sheet do i make this alteration?

ceeb / 2008-05-25 18:00:43   

Locate #menu ul in style.css and include a line-height declaration.


#menu ul { list-style: none; margin: 0 0 12px 0; line-height: 1.5em; }

The line-height can be expressed in px or em.

jthomas4 / 2008-05-26 20:17:31   

that worked perfect - thanks ceeb

Adria / 2008-06-19 12:39:27   

Is it possible to do this so that it only affects the space for a specific heading and not to the whole list? I'm trying to set apart one heading from the rest in the list. Could it be something like a p tag? And can I achieve this solely through CSS?

Thanks much,
Adria

Vaska A / 2008-06-19 13:28:44   

Not really. Soon there will be a css hook in there that will make this possible...

What I do...see if you can make a creative use of the pre and post nav regions to help you out...maybe you can come up with something manual'ish that way.

This thread has been closed, thank you.