If you are not happy with any of the packaged solutions, you can always write your own, like I did. The example here uses standard article class margins, which my stamper was not designed for. But it still looks OK, and you have control over all the parameters.
\documentclass[12pt]{article}
\makeatletter
%% SET UP CODE TO USE PAGE STAMPS AT TOP AND BOTTOM OF PAGE. DEFAULT
%% STAMP IS "DRAFT", BUT IT CAN BE RESET AND USED FOR OTHER PURPOSES,
%% TOO.
\def\PageStampFlag{F}
\def\thePageStamp{}
\def\EmptyStyle{empty}
\def\PlainStyle{plain}
\newcommand{\ps@pagestamp}{
\renewcommand{\@oddhead}{\hfil\textbf{\Large\thePageStamp}\hfil}
\renewcommand{\@evenhead}{\@oddhead}
\renewcommand{\@evenfoot}{\hfil
\begin{tabular}{c}
\textrm{\thepage}\\
\textbf{\Large\thePageStamp}
\end{tabular}
\hfil}
\renewcommand{\@oddfoot}{\@evenfoot}
}
\newcommand{\ps@emptypagestamp}{
\renewcommand{\@oddhead}{\hfil\textbf{\Large\thePageStamp}\hfil}
\renewcommand{\@evenhead}{\@oddhead}
\renewcommand{\@evenfoot}{\hfil
\begin{tabular}{c}
~\\
\textbf{\Large\thePageStamp}
\end{tabular}
\hfil}
\renewcommand{\@oddfoot}{\@evenfoot}
}
\newcommand\PageStamp[1][DRAFT]{
\def\PageStampFlag{T}
\setlength\textheight{9in} %textheight+headheight+headsep=9in
\def\thePageStamp{#1}
\setlength\topmargin{-1.0in}
\setlength\headheight{0.6in}
\setlength\headsep{0.4in}
\setlength\footskip{38pt}
\def\PlainStyle{pagestamp}
\def\EmptyStyle{emptypagestamp}
\pagestyle{\PlainStyle}
}
\newcommand\StopPageStamp[0]{
\def\PageStampFlag{F}
\setlength\topmargin{0in}
\setlength\headheight{0pt}
\setlength\headsep{0pt}
\setlength\textheight {9.0in}
\setlength\footskip{30pt}
\def\PlainStyle{plain}
\def\EmptyStyle{empty}
\pagestyle{\PlainStyle}
}
\makeatother
\begin{document}
\PageStamp[\today]
This is a test of Steven's pagestamping commands. Usage is
\verb|\PageStamp[stamp]|. Default stamp is ``DRAFT''. The command can
be reissued to change the pagestamp. The alternate command
\verb|\StopPageStamp| will suspend the pagestamp, unless/until later
reinstituted with a \verb|\PageStamp[]|
\end{document}

\documentclass{...}and ending with\end{document}. – hpesoj626 Mar 5 at 23:40