Today I added bullet images to the H3 tags on my blog. It’s a very simple process:
- Open your CSS file
- Find the line that has the “H3″ styling
- Add the following code in there:
background-image: url(images/h3bullet.gif);
background-repeat: no-repeat; - Add some padding to make sure the text and image are not overlapping
padding-left: 22px;
Tags: bullet, css, heading tag

