PDA

View Full Version : bullets and positioning . . .


des55
08-13-2002, 01:04 PM
I understand that by placing the <ol> tag prior to the <li> tag will turn a "bulleted list" into a numbered list -- and apparently the numbered list keeps all text aligned respectively to the label--but how can I do the same with a "plain" bullet?



Labeling: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
Labeling: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.


Labeling: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
Labeling: Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.

http://www.siteexperts.com/forums/viewConverse.asp?d_id=10152&Sort=0

boxer_1
08-13-2002, 01:08 PM
Is this what you are asking:

<ul type="circle">
<li>First</li>
</ul>

Note the bolded type="circle". Other values could be "disc" and "square". Any help?