> Thank you very much for your reply. It is now clear to me. Is there any way
> that this numbering style can replace the page numbers at the bottom?
>
In this situation, usually i use fancyhdr and lastpage
Document->Settings->Page layout, heading style changed to "fancy"
then in the latex preamble (Document->Settings->Latex preamble)
\usepackage{lastpage}
\lhead{}
\chead{}
\rhead{}
\lfoot{}
\cfoot{{Page} \thepage { of} \pageref{LastPage}}
\rfoot{}
\renewcommand{\headrulewidth}{0pt}
It will print, Page x of y at every bottom of the page.
Regards
waluyo