Every so often I come across a deep-level list that needs to be put into an HTML document. You can make yourself nuts with tons of classes, ID's and the like, but found that by creating classes for the styles you need, you can save yourself a lot of time. Thus, for each list-style: that I need, I create a CSS class: .olDecimal li {list-style: decimal;} .olAlpha li … [Read more...] about How to Manage Multiple Level Lists in Dreamweaver – Bullets, Letters, Numbers
(X)HTML
Create Two Column Table with Bullet Points Without Using
Recently I had the task of adding bullets to items in a pre-existing two-column HTML table. I first started to look at how to add the bullets using css to format the <TABLE> or <TD> tags, and then I looked at using css to make two columns of separate lists using <UL> and <LI> tags. I eventually found an easier solution: ASCII codes. This article will … [Read more...] about Create Two Column Table with Bullet Points Without Using