[Tex/LaTex] Beamer Font Size for Footer

beamerfontsizeheader-footer

How can I change the font size of the footer in Beamer without modifying the font of the title (on the title page)? Also, when I try to change the title's font with \title{\fontsize{20}{25} My Title} it doesn't seem to work. Thank you.

Best Answer

You need the command \selectfont after fontsize

\documentclass{beamer}
\usetheme{AnnArbor}
\title[My Title]{ \fontsize{20}{25}\selectfont My Title} 
\begin{document}
\frame{\titlepage}
\frame{a frame}
\end{document}

Detailed information are documented in the Docmentation of LaTeX font commands

EDIT: Use the theme AnnArbor and the optional argument of \title.