I'm creating a new beamer theme which mimics an exisiting powerpoint template. I've spent quite some time to make the footlines in both types of document overlap, only to find out that the position of my footline depends on the chosen font size.
Here's a MWE (with a dummy logo in the correct position):
\documentclass[12pt]{beamer}%Changing the size here moves the footline logo
\usepackage{tikz}
\title{Hello world!}
\setbeamertemplate{footline}{%
\begin{beamercolorbox}[wd=\paperwidth,ht=.0769\paperheight,dp=0mm]{title in head/foot}%
\begin{center}%
\begin{tikzpicture}
\draw[fill=blue] (0.7094\paperwidth,0) rectangle (.9286484375\paperwidth,.0769\paperheight);
\draw[fill=blue] (0,.017\paperheight) rectangle (.6845\paperwidth,0.05\paperheight);
\end{tikzpicture}%
\end{center}%
\end{beamercolorbox}%
}
\setbeamertemplate{navigation symbols}{}
\begin{document}
\maketitle
\end{document}
Here's a comparison between the 12pt and 15pt results, I've used the 15pt result as a background and painted the 12pt result red:

The 12pt case (red) has a footline slightly above the 15pt case. Why does this happen? The paperwidth/paperheight shouldn't depend on the font size so I don't see how it can affect the position.
Please let me know if you cannot reproduce the phenomena.
center. Try to replace it with\centering. Does it solve the problem? – Ignasi Oct 08 '15 at 20:09