I want to create a set of unordered nested lists that have have circle style bullets for the first list and a url style bullet for the second list (the nested list). I can get the url nested list to look great but I can't get the the regular circle bullets to show up anymore for the first list?
UL {list-style: url("http://***.gif")} for the url style bullet
UL {list-style:circle} for the original circle
How do I get the circle unordered list to come back?
Ul
2007-07-10
04:24:11
·
2 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design
If I use the standard
I keep getting the new url bullet and not the original circle. I want to have both in these nested lists.
2007-07-10
04:31:16 ·
update #1
I have found a way to cheat but I am not sure this is the ebst way. I have changed the ordered list tag from showing numbers to showing bullets. This way I can have two different bullet styles.
But I want to know how to have mulptiple unordered list bullet styles. There has got to be code for that. What if a person want multiple url bullets in a page? Is there a way to differentiate the unordered code in the css? Like do you do something like:
UL1 {}
UL2{}
Just like H1 and H2?
2007-07-10
04:39:20 ·
update #2