Customizing the pagefooter of a booklet
I want to show the page number in the footer of a booklet.
The page number should align to the right on odd pages and to the left on even pages.
What is the best way to acomplish that?
The booklet header and footer are Html so you would do this the same way as you would in regular Html - ticking the box to define a separate header and footer for odd and even pages in the booklet editor, "Header and Footer" page.
Probably the simplest html to align some text right is to create a paragraph with alignment set to "right". e.g.
<p align="right"><a class="pagenumber" href="http://pagenumber"> </a></p>
.. the link with http://pagenumber as the href is the placeholder for the page number.