Click to See Complete Forum and Search --> : Bullet #'1 with paragraph text inbetween


phpnstuff
08-21-2006, 04:08 PM
The following works fine for me:

<ul>
<li style="list-style-type: decimal; margin-top: 1em;"><a class="btxtblk>Info 1</a></li>
<li style="list-style-type: decimal; margin-top: 1em;"><a class="btxtblk>Info 2</a></li>
<li style="list-style-type: decimal; margin-top: 1em;"><a class="btxtblk>Info 3</a></li>
<li style="list-style-type: decimal; margin-top: 1em;"><a class="btxtblk>Info 4</a>
<p><a class="btxtblk">Paragraph info<a></p>
</li>
<li style="list-style-type: decimal; margin-top: 1em;"><a class="btxtblk>Info 5</a>
</ul>

The only problem is the <p> paragraph text aligns also with the bullet (5 spaces) how can I force the paragraph text itself to go -5 spaces so I can put paragraphs between bullets, but at the same time continue number the bullets without losing count!?

Charles
08-21-2006, 04:23 PM
<p class="btxtblk" style="margin-left:-5em">Paragraph info</p>

phpnstuff
08-21-2006, 04:43 PM
Thanks, I didn't realize you can apply that to <p tags>.