Forum Moderators: not2easy
Help?
My doctype is: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
style:
#content {
clear: right;
float: right;
width: 76%;
padding-right: 2px;
}
#content li {
width: 550px;
line-height: 21px;
list-style: disc outside;
}
<div id="content">
<ul>
<li>Book Projects: Chronicle your company's heritage to educate new employees or celebrate an anniversary or major event</li>
<li>Executive Communications: Help your leaders communicate with clarity and confidence </li>
</ul>
</div>
When this page renders, the text "celebrate an anniversary..." appears on a second line and the bullet is to the left of 'celebrate' not on the first line next to 'Book ...'
Book Projects: Chronicle your company's heritage to educate new employees or
-- celebrate an anniversary or major event
On the second bullet, the bullet appears on the second line next to the word 'confidence' not on the first line next to 'Executive ...'
Executive Communications: Help your leaders communicate with clarity and
-- confidence
Any thoughts?
Much appreciated.
I added another div tag on the page after my content div ant the bullets apear normal again.
<div id="content">
<div style="width: 600px; text-align: left;">
<ul>
<li> list item 1 </li>
<li> list item 2 </li>
</ul>
</div>
</div>
Cheers!