I have a document which has a sidebar in the bottom of the source order.
The document is two pages long (dynamically generated), and when I position the sidebar
it positions on the second page.
The pages are not "named" because the page break is not in a consistent place.
How can I target the first page for the position of the sidebar?
My ideal code:
The document is two pages long (dynamically generated), and when I position the sidebar
#sidebar {position: absolute; top: 0; right: 0;}
it positions on the second page.
The pages are not "named" because the page break is not in a consistent place.
How can I target the first page for the position of the sidebar?
My ideal code:
#sidebar{
position: absolute;
top: 0;
right: 0;
page: page:first;
}