Still working on converting my document to work with prince.
Setting up running footers I've run into a problem.
Left hand pages, the footer is left aligned, right hand pages though, are still left aligned. See attached screenshot. (yellow background added temporarily to see where the margins are_ Have I missed something about how this is supposed to work?
Setting up running footers I've run into a problem.
html
<section>
<article id="my-first-chapter">
<header class="entry-header">
<h3 class="entry-title">The first chapter title</h3>
</header>
<div class="entry-content">
<p class="copyright">The copyright stuff for this chapter</p>
<!-- the rest of the chapter -->
</div>
</article>
<!-- more chapters with same tags for first few lines -->
</section>
css
@page:left {
@bottom-left {
content: element(footer);
font-size: .75em;
}
}
@page:right {
@bottom-right {
content: element(footer);
font-size: .75em;
}
}
.copyright { position: running(footer);}
Left hand pages, the footer is left aligned, right hand pages though, are still left aligned. See attached screenshot. (yellow background added temporarily to see where the margins are_ Have I missed something about how this is supposed to work?