Quote:
Originally Posted by Hitch
Well, heading styles aren't meant to be used for styling--size, bold, etc. They are, as you say, hierarchal. So, if you want something to look a certain way, use paragraph styles. If you're asking if you should use h1 and h3, or whatever, for a chapter NUMBER and a chapter TITLE, I would say no.
|
Quite right! I use <h*> tags for hierarchal reasons. And not few times I used even tables for chapter titles (when I wanted some FX

). In those cases, I used something like:
Code:
<h2 class="hidden" title="My Title Chapter here"></h2>
<table>
...
</table>
and in the .css file:
Code:
.hidden {
display: none;
}
So the hierarchy is maintained for the TOC, and for the chapter numbers and for the chapter text I used something else.