Quote:
Originally Posted by Hitch
You mean if you actually set the CSS on w/o, for a heading, it disables it, instead of enabling it? (Am I confused?)
|
That's right! All <h*> tags come by default with the properties "page-break-after: avoid" and "page-break-inside: avoid". So if you don't like them, then you need to set in the css stylesheet something like:
Code:
h1, h2, h3, h4, h5, h6 {
orphans: 1;
widows: 1;
}
But the good news is that you can use now <h*> tags for things you want to be together (not very academic but possible

). Of course, you'll have write more code yet for kf7.