quote:
Originally posted by CookieRevised
All this can be done with normal basic HTML, no stylesheet manipulation is needed...
The proper syntax is:
<ul>
<il>
<il>
<il>
</ul>
or instead of <ul> (unordered list) use <ol> (ordered list). Those lists always have idents in the form of bullets, numbers, etc...
To have the same effect but without the bullets, numbers, etc, you need to create a definition list instead of a normal list:
<dl>
<dt>
<dd>
</dl>
Where <dt> is the term being used in the definition and <dd> the definiation itself. They have the same ident as in a normal list.
wow, learn something new everyday, thanks for that! ive been manipulating the <ul> all day to get it to work as well! thanks!