Using beamer when I change a font size in a frame title line and/or footline to the preferred height, the height of these lines is not automatically adjusted to the font height. How to achieve that effect?
I started to use the metropolis theme.
As I was asked, I created a MWE now. BTW, what is the name of a standard color of a frametitle?
\documentclass{beamer}
\usetheme[numbering=none]{metropolis}
\setbeamerfont{frametitle}{size=\normalsize,series=\bfseries}
\setbeamerfont{frametitle}{size=\small,series=\normalfont}
\setbeamercolor{footline}{bg=black!80,fg=white}
\setbeamertemplate{frame footer}{A footline}
\begin{document}
\begin{frame}{A frame title in a small size}
\begin{block}{Some itemize}
\begin{itemize}
\item Item 1
\item Item 2
\end{itemize}
\end{block}
\begin{block}{Some maths}
\[\sum_{n=1}^{\infty}\frac{1}{n^2}=\frac{\pi^2}{6}=\zeta(2)\]
\end{block}
\end{frame}
\end{document}

fg=black!2, bg=mDarkTeal– samcarter_is_at_topanswers.xyz Aug 06 '18 at 21:03