Reputation: 181
I would like to change the color of the black navigation bar, which is at the top of the slide. Here is a picture :
Upvotes: 3
Views: 1802
Reputation: 38967
You can change the background colour of the headline like this:
\documentclass{beamer}
\usetheme{Frankfurt}
\setbeamercolor{section in head/foot}{bg=red}
\begin{document}
\section{title}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\end{document}
Upvotes: 4