Jazz Up Your Bullet Points

February 27th, 2008

When writing any content particularly for web consumption, bullet points are really handy. They help break up your text a bit if they article is very long. They also give people a quick focus point. But have you looked at your bullets and thought they looked a little… blah? Here’s some code you can use to pretty up your bullets.

Circle Bullets

  • Item 1
  • Item 2
  • Item 3
1
2
3
4
5
<ul style="list-style-type: circle">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

Square Bullets

  • Item 1
  • Item 2
  • Item 3
1
2
3
4
5
<ul style="list-style-type: square">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

Lower Roman Numerals Bullets

  1. Item 1
  2. Item 2
  3. Item 3
1
2
3
4
5
<ol style="list-style-type: lower-roman">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>

Image Bullets
This one is just a tad more work, but you can have visually stunning bullets with images.

  1. First, you need to find a bullet image. I like to scroll through this site to find something to use.
  2. Save it to your computer and then upload it to your website. Take note where you upload the image to because you’ll be needing the URL to the image.
  3. Copy paste the code below and remember to fill it in with the URL to your own bullet image. If you want to use the same bullet image I am using here, just right click on this image red bullet and save.
  • Item 1
  • Item 2
  • Item 3
1
2
3
4
5
<ul style="list-style-image: url('0136_fat_arrow.png')">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Like this post? Think it'll help someone else? Want to save it? Click here => to Digg, Stumble or bookmark it.

Related Entries

5 Comments to “Jazz Up Your Bullet Points”

  1. Arika Says:

    Cool thx Lynette…I get tired of the same old boring bullets. :)

  2. Lynette Says:

    I know it Arika. I’ve been having a lot of fun with CSS and nice funky bullets. Now, the plain old dotted bullets look so boring to me I have to change them.

  3. Kelly Says:

    Thank you Lynette! I can really use this!

  4. Lynette Says:

    You’re welcome Kelly.

  5. Getting slapped upside the headed courtesy of your pitifully dull blog writing voice Says:

    [...] Jazz up your bullet points (very neat article that shows how you can add graphics to your bullet points like this posting proudly boasts) [...]