Forum Moderators: open
Have you tried stripping the heading to an empty document, then adding items by trial and error? It's probably one of the surrounding elements, there should be no indent on a head other than it's default margin/padding. Very possible it's a missing closing <ul>/<ol> tag, or a head nested in a <ul>:
<ul>
<li>List one</li>
<li>List two</li>
<h3>I think I'm part of the previous list</<h3>
Or something "like" that, with an adjacent element pushing it out of place. If it's not that, remove the margins/padding on the head:
<style type="text/css">
h3 { margin:0; padding:0; }
</style>
<h1>header<h1/>
<blockquote>
<p>words and stuff<p/>
<blockquote/>
<h2>header2<h2/>
I removed the <blockquote> and the problem went away.
is this a normal issue? should I not be using blockquotes as a rule. Perhaps I am misunderstanding the proper usage.
thanks again
Also it's best only to use blockquote for a real quote - not just to get the indentation effect. In the earlier days, when even basic CSS support was so buggy in many browsers, a lot of people got in the habit of using blockquote just to get the margin-left. But it's much better to use the element in the context of its correct semantic meaning.