Forum How do I...?

show page number in page-margin box @bottom-right

osprofi
Hello PrinceXML users
I want to print the page number in the css3 @page page-margin box @bottom-right instead of @bottom-right-corner. The last rectangle is easy reachable using margin-bottom and margin-right.

How ca be reached the rectangle @bottom-right ?

Can you help me to solve this issue ?

Greetings, Peter
mikeday
You mean like this:
@page {
    @bottom-right { content: counter(page) }
}
osprofi
Hello mikeday
yes, this works perfect in princexml; but not in IE or firefox print preview.
Thanks for the hint, peter
mikeday
Browsers don't care much about print, unfortunately. You could try using "position: fixed".