Quote:
Originally Posted by eschwartz
The appropriate way is I believe to use a
Code:
<h1>Header<br/><span class="subhead">Subhead</span></h1>
This has the effect of semantically keeping a subhead part of the structural header
|
Yes, but the subhead is then at the wrong level in the structure. The correct structure is
Code:
<h1>heading</h1>
<h2>Subhead</h2>
<p>Content</p>
which is what I have. I then try to use CSS to give it the correct appearance, but the conversion tool screws it up. I absolutely refuse to alter the structure of the document in order to correct its appearance. YMMV, but that's the way I like to do things.