View Single Post
Old 02-06-2018, 05:47 AM   #15
mzso
Enthusiast
mzso began at the beginning.
 
Posts: 30
Karma: 10
Join Date: Feb 2018
Device: PC
Quote:
Originally Posted by JSWolf View Post
Better is using HTML/CSS. You might have to change the location of the stylesheet in the HTML to fit yours layout.

CSS Code:
Code:
body {
  widows: 1;
  orphans: 1;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  text-align: justify;
}
h2 {
  margin-top: 0.8em;
  margin-bottom: 0;
  text-align: center;
}
hr {
  border-top: 2px solid;
  margin-bottom: 1em;
}
p {
  margin-top: 0;
  margin-bottom: 0;
  text-indent: 1.2em;
}
.noindent {
  text-indent: 0;
}
HTML Code:
Code:
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<title>Dark in Death</title>
<link href="../styles/stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h2>TITLE</h2>
<hr/>
<p class="noindent">This is the first paragraph</p>
<p>This is the second paragraph</p>
</body>
</html>
Okay. I don't think I can do this. (Sorry, HarryT's post made me realize that I wasn't near clear enough in my OP, which I now updated. )

There's only a simple one line "header template" input field, for headers in the pdf output section, which I was talking about.
mzso is offline   Reply With Quote