I have an H1 style for my site:
.centercol h1 { color: #006bb6; font-weight: normal; font-size: 18px; padding:3px 3px 3px 6px; border-lef
This is because your is the width of the centercol. Specify a width on the and use margin: 0 auto; if you want it centered.
margin: 0 auto;
Or, alternatively, you could float the , which would make it only exactly as wide as the text.