Hi!
Here is a simple page
and here is a simple style file
When I run them through Prince 8.0 it turns out that the PDF bookmarks are reversed. The float: top; is what triggers this bug—removing it makes the bookmarks be generated in the correct order.
Here is a simple page
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Test Page</title>
</head>
<body>
<h1>This is a Page</h1>
<p>It has a subsection.</p>
<h2>Subsection 1</h2>
<p>Of course, subsections contain text, too!</p>
</body>
</html>
and here is a simple style file
h1 {
float: top;
}
When I run them through Prince 8.0 it turns out that the PDF bookmarks are reversed. The float: top; is what triggers this bug—removing it makes the bookmarks be generated in the correct order.