what do you mean by "snappy"? you could always just use CSS (not sure
how this questions relates to jQuery or JavaScript at all) to replace
the bullet with your own image:

HTML:
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>

CSS:
ul li {list-style-type:none;background:transparent url(path/to/bold-
bullet.gif) no-repeat left center;}

as far as i know, you can't style just the bullet unless you wrap the
<li/>'s content in some other tag, such as:
HTML:
<ul>
<li><span>List Item 1</span></li>
<li><span>List Item 2</span></li>
<li><span>List Item 3</span></li>
</ul>

CSS:
ul li {font-weight:bold;}
ul li span {font-weight:normal;}

but in the last example, you are adding non-semantic <span/> tags,
which should be avoided where possible.


On Nov 21, 1:45 am, dnagel <grandna...@gmail.com> wrote:
> Can anyone think of a snappy way to set the font to bold only on the
> bullet(decimal)?  The content of the LI should remain font-
> weight:normal

Reply via email to