Bulleted List -- extra line break at beginning?

M

Meaghan

Hi there,

When I create a bulleted list in FP it inserts a line break between the
paragraph and the list items. I do not want a space between the paragraph
and listing -- I simply want the list directly beneath the paragrah, but I
can't seem to format it that way. Is there any way to do this?
 
R

Ronx

Use CSS to set the bottom margin of the paragraph and top margin of
the list to zero (0)
<style type="text/css">
..btm {margin-bottom:0;}
..tpl {margin-top:0}
</style>
</head>

<body>
<p class="btm">This is the paragraph</p>
<ul class="tpl">
<li>this is the first item in the list</li>
</ul>
 
Top