Bulleted List -- extra line break at beginning?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top