My title page has a background image. However, when the presentation has sections (that create a navigation bar), there is a white box on top of the image. How can I get rid of it?
\documentclass[14pt]{beamer} %
\graphicspath{ {./graphics/} }
\mode<presentation>
{
\usetheme{Warsaw}
\usecolortheme{wolverine}
\setbeamercovered{transparent}
}
\setbeamertemplate{navigation symbols}{}%remove navigation symbols
\begin{document}
{
\setbeamertemplate{headline}{}
\setbeamertemplate{footline}{}
\usebackgroundtemplate{\includegraphics[width=\paperwidth,height=\paperheight]{square-land-background.jpg}}%
\begin{frame}{}
\end{frame}
}
\section{Introduction}
\begin{frame}{a}
\end{frame}
\section{first part}
\begin{frame}{b}
\end{frame}
\end{document}
I tried both solutions to this question: Beamer: Removing headline and its space on a single frame (for plan), but keeping the footline but they did not work.



\vskip\headheightto\setbeamertemplate{headline}{}removes the headline space? – Jonathan Komar Sep 05 '18 at 11:28\vskip\headheight) will do. Because beamer only calculates the headheight at the start of the document, this will shift the main content of the frame relative to the headline, but the headline will nevertheless only start at the top of the page -> voila the image is shifted upwards. – samcarter_is_at_topanswers.xyz Sep 05 '18 at 11:41