Posts Tagged ‘heading tag’

Adding Bullets To Heading Tags In CSS
Saturday, October 11th, 2008

Today I added bullet images to the H3 tags on my blog. It’s a very simple process:

  1. Open your CSS file
  2. Find the line that has the “H3″ styling
  3. Add the following code in there:
    background-image: url(images/h3bullet.gif);
    background-repeat: no-repeat;
  4. Add some padding to make sure the text and image are not overlapping
    padding-left: 22px;