...are not aligned with the top line of a paragraph. Instead it appears centered on the paragraph.

Comments

ensemble’s picture

Status: Active » Needs review

I know this issue is incredibly old, but I had the same problem and have a quick and dirty fix for it. Change this section of style.css:

...
#content-bottom  ul li {
  background: url('images/green-bullet.png') no-repeat left center;
  ...
}

to this:

...
#content-bottom  ul li {
  background: url('images/green-bullet.png') no-repeat left 0.6em;
  ...
}

I just came up with the number 0.6em by messing around in Firebug, but I've tested it on a couple of browsers and seems to generally work well.