Lorin Rivers wrote:
> tap... tap... tap... Is this thing on?

Nope - that's a fake one.

> I want to style an unordered list so that the "top-level"
> elements are bold with no bullets, while the items inside
> these have the bullets, etc...

[snip code]

> I couldn't figure out a way to do this without sibling
> selectors, which makes IE cranky...


Since you didn't add in the html code, I have no idea what the 
sibling code was supposed to do, but this is how I would do what 
you want:

li{
font-weight:bold;
list-style-image:none;
}
li li{
font-weight:normal;
list-style-image:url(/images/bullet3.gif);
}

If this is not what you were after, please can you give a URL or 
a sample of the HTML as well?

-- 
Els
http://locusmeus.com/
http://locusoptimus.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to