Hi,
I'm trying to compress my text vertically. After every <H3> there is a
double line space before my <UL> begins. I want the <UL> right below
the <H3>. My output text looks like:
<H3>
<UL>
Where I want:
<H3>
<UL>
The line-height attribute seems to compress above the <H3> not below
it. My CSS has the following:
h3{
font: bold 80% Arial,sans-serif;
color: #334d55;
margin: 0px;
padding: 0px;
line-height: 2;
}
How do I compress the gap between my H3 and the UL?
Thanks for your help,
Jim.