I have a presentation to put together and I need to specify the classification of each page (UNCLASSIFED) centred at the very top (above the Frametitle) and at the very bottom. I tried using \setbeamertemplate{headline}{UNCLASSIFIED}, for example, but all it does is stick the classification on the far left. When I add it within \begin{center}{}\end{center}, nothing happens. In either case, I get nothing for the footline.
\documentclass[t]{beamer}
\begin{document}
\section{Background: The Problem}
\frame{
\setbeamertemplate{headline}
{
\begin{center}
{\bf UNCLASSIFIED}
\end{center}
}
\frametitle{Background: The Problem}
\begin{itemize}
{\small
\item stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff;
\item stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff;
\item stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff;
\item stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff;
\item stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff;
\item stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff stuff;}
\end{itemize}
\setbeamertemplate{footline}
{
\begin{center}{\bf UNCLASSIFIED}
\end{center}
}
}
\end{document}

\bf- it is deprecated 20 years ago! Use\textbf{}or\bfseriesinstead. – cfr Apr 19 '15 at 13:05\setbeamertemplate{headline}{{\makebox[\paperwidth][c]{\bfseries UNCLASSIFIED}}}. Use\bfseriesinstead of\bfBTW. – Apr 19 '15 at 13:10