Consider the following MWE
\documentclass[leqno]{beamer}
\usetheme{Madrid}
\usecolortheme{whale}
\usepackage{lmodern}
\hypersetup{colorlinks=true, allcolors=blue}
\title[Short title]{Title}
\author{John Doe}
\date{\today}
\begin{document}
\begin{frame}
\begin{equation}
\label{eq:foo}
2 + 2 = 4
\end{equation}
Hyperlink: \ref{eq:foo}
\end{frame}
\end{document}
I want my short title foreground color to be white and my hyperlinks blue. However setting colorlinks=true, allcolors=blue also sets a blue color for the short title. I tried setting \setbeamercolor{title in head/foot}{fg=white} but it doesn't seem to have any effect.

I found this answer that apparently addresses the same/similar problem. In order to just change the color of the short title is it also necessary (an the only workaround available) to temporarily disable hyperref functionality in the footer?


\title[\color{white}Short title]{Title}(or\textcolor{}{}) It's not very elegant but shouldn't have any side effect – d-cmst Sep 17 '14 at 20:57