If you mean the line spacing...
You would do this using CSS...
You need to add the style to the 'p' tag...
Example...
HTML Code:
<p style="line-height:100%; margin-top:0; margin-bottom:0;">Line 1</p>
<p style="line-height:100%; margin-top:0; margin-bottom:0;">Line2</p>
Alternatively add the style into the css and then use a class...
Example...
HTML Code:
<head>
<style type="text/css">
.spacing {
line-height:100%;
margin-top:0;
margin-bottom:0;
}
</style>
</head>
<body>
<p class="spacing">Line 1</p>
<p class="spacing">Line2</p>
</body>
Maybe not the best description but...it should do
Hope this helps
-James 
|