Quote:
Originally Posted by arch13
I'd like to keep the lists in order to make sure that if the presentation formate changes, I can still choose if I want bullets for each list entry without having to use a graphic.
...
Is there a way to increase the padding between the list titles and list entry's while keeping them as lists?
|
Have you tried using <div> or <span> with
Code:
{ display: list-item;}
That would allow you to use proper bullets and such, might end up being the same thing as actual ul tags, but possibly could be easier to control.
Personally, it seems like it's been a long time since I've used any tags apart from div, span and table (for actual tabular data), CSS can do everything with those; don't know if this is good style or not, just what I seem to end up with.