This is a follow-up question to Rochester theme titlepage change height of top bar
I try to modify the distance between the title box and the top bar. Right now I only managed to change the height of the top bar.
Do you have any idea how to do that? Or maybe simply remove the top bar from the title page and move the title bar to the top?
\documentclass[14pt]{beamer}% http://ctan.org/pkg/beamer
\let\Tiny\tiny% https://tex.stackexchange.com/q/58087/5764
\setbeamercolor{normal text}{bg=black!10}
\usetheme[height=14mm]{Rochester}
\begin{document}
\title[Title]{My title}
\subtitle{Subtitle}
\author{Author}
\institute[Institute]{My institute}
\date[Date]{My date}
\logo{\color{blue!50}\scalebox{2}{\TeX}} % you can % it
% Temporarily adjust header height to 7mm, only for title page
\begingroup
\makeatletter
\beamer@headheight=7mm
\expandafter\let\csname beamer@@tmpop@headline@sidebar theme\endcsname\relax
\defbeamertemplate*{headline}{sidebar theme}
{%
\begin{beamercolorbox}[wd=\paperwidth]{frametitle}
\vrule width0pt height \beamer@headheight%
\end{beamercolorbox}
\vspace*{\beamer@headheight}
}
\makeatother
\begin{frame}
\titlepage
\end{frame}
\endgroup
% Header height restored to 14mm
\section{A section}
\subsection{A subsection}
\begin{frame}
\frametitle{Frame title}
\framesubtitle{frame subtitle}
Some text
\end{frame}
\end{document}
