Greetings,
My bulleted list does not align the text on the 2nd line. It goes right to the left margin and I can't indent it. It DOES align if I do the basic
<ul>
<li>long line of text that wraps to two or more lines</li>
<li>long line of text that wraps to two or more lines</li>
<li>long line of text that wraps to two or more lines</li>
</ul>
but then I get the extra blank line I don't want between the bulleted list and the preceding unbulleted line of text. I eliminated the extra line with some of the code I copied from someone else, shown below, but then you'll see if you paste it into a test page, that the lines following the first line don't align with the text. Can I have it both ways? :
- line of text
- no line space after line of text
- 1st bullet, 2nd bullet and so on, wrapping, but aligning to margin where 1st line of bulleted text starts.
I hope this makes sense. Below is an example. (note - I have to keep the <br>s in there because I'm trying to force the column width since I seem to be unable to do it the normal way - but I get the same bad bullet wrapping results with or without the <br>s).
Thanks so much,
PaulaJune
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
ul {
padding: 0px;
margin:0;
list-style: disc inside;
}
p {margin:0;padding:0}
</style>
</head>
<body>
<p>
<table width="505" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="335"><p><strong>Mission:</strong><br />
Everything I do is inspired by my enduring mission:
<ul>
<li>To enhance and improve client documents . . . <br>
“Paulish it!” With expert proofing, editing and<br>
formatting.</li>
<li>To create new documents of beauty . . . with an<br>
artist’s flair, a technician’s accuracy and an author’s<br>
style.</li>
<li>To deliver projects with integrity . . . with<br>
timeliness, fair pricing and accountability.</li>
</ul></td>
<td width="170"> </td>
</tr>
</table>
</body>
</html>
My bulleted list does not align the text on the 2nd line. It goes right to the left margin and I can't indent it. It DOES align if I do the basic
<ul>
<li>long line of text that wraps to two or more lines</li>
<li>long line of text that wraps to two or more lines</li>
<li>long line of text that wraps to two or more lines</li>
</ul>
but then I get the extra blank line I don't want between the bulleted list and the preceding unbulleted line of text. I eliminated the extra line with some of the code I copied from someone else, shown below, but then you'll see if you paste it into a test page, that the lines following the first line don't align with the text. Can I have it both ways? :
- line of text
- no line space after line of text
- 1st bullet, 2nd bullet and so on, wrapping, but aligning to margin where 1st line of bulleted text starts.
I hope this makes sense. Below is an example. (note - I have to keep the <br>s in there because I'm trying to force the column width since I seem to be unable to do it the normal way - but I get the same bad bullet wrapping results with or without the <br>s).
Thanks so much,
PaulaJune
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
ul {
padding: 0px;
margin:0;
list-style: disc inside;
}
p {margin:0;padding:0}
</style>
</head>
<body>
<p>
<table width="505" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="335"><p><strong>Mission:</strong><br />
Everything I do is inspired by my enduring mission:
<ul>
<li>To enhance and improve client documents . . . <br>
“Paulish it!” With expert proofing, editing and<br>
formatting.</li>
<li>To create new documents of beauty . . . with an<br>
artist’s flair, a technician’s accuracy and an author’s<br>
style.</li>
<li>To deliver projects with integrity . . . with<br>
timeliness, fair pricing and accountability.</li>
</ul></td>
<td width="170"> </td>
</tr>
</table>
</body>
</html>