View Single Post
Old 05-02-2019, 02:15 PM   #19
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,801
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Hitch View Post
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.
RbnJrg is offline   Reply With Quote