I am trying to draw a blue filled rectangle on half of the slide space. However, I do not want it to overlay the navigation bar. The following figures illustrate the current situation:
The title page

The first slide of the first section. I would like the navigation bar to appear in this one.

The content of the first section

Here follows an MWE for this case
\documentclass{beamer}
% To make the navigation bullets appear
\usepackage{remreset}
\makeatletter
\@removefromreset{subsection}{section}
\makeatother
\setcounter{subsection}{1}
\useoutertheme[subsection=false]{smoothbars}
\setbeamercolor{section in head/foot}{fg=white, bg=black}
\setbeamertemplate{section in head/foot shaded}{\color{white!50!black}\insertsectionhead}
\setbeamertemplate{frametitle}[default][colsep=-4bp,rounded=false,shadow=false]
\setbeamercolor{frametitle}{fg=white,bg=blue}
\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{} %remove navigation symbols
\setbeamercovered{invisible} %No transparent layers
\usepackage{tikz}
\usepackage{pdfrender}
\title{My Presentation}
\author[My short name]{\bfseries My name}
\institute{University}
\date[19/05/15]{\today}
\begin{document}
{
\setbeamertemplate{section in head/foot shaded}[default][100]
\frame{ % This is the title slide where I'd like to highlight the sections
\frametitle{}
\setbeamertemplate{footline}{}
\maketitle
}
}
\section{First section}
{
\setbeamertemplate{footline}{}
\frame{
\begin{tikzpicture}[remember picture,overlay]
\fill[blue]
([yshift=0pt]current page.west) rectangle (current page.north east);
\node[anchor=center]
at ([yshift=10pt,xshift=0pt]current page.center)
{\parbox[t]{\textwidth}{\centering%
\usebeamerfont{author}\textcolor{white}{%
\textpdfrender{
TextRenderingMode=FillStroke,
FillColor=white,
LineWidth=.1ex,
}{\insertsection}}}};
\end{tikzpicture}
\addtocounter{framenumber}{-1}
}
}
\frame{\frametitle{My Frame Title}}\frame{}
\section{Second section}
{
\setbeamertemplate{footline}{}
\frame{
\begin{tikzpicture}[remember picture,overlay]
\fill[blue]
([yshift=0pt]current page.west) rectangle (current page.north east);
\node[anchor=center]
at ([yshift=10pt,xshift=0pt]current page.center)
{\parbox[t]{\textwidth}{\centering%
\usebeamerfont{author}\textcolor{white}{%
\textpdfrender{
TextRenderingMode=FillStroke,
FillColor=white,
LineWidth=.1ex,
}{\insertsection}}}};
\end{tikzpicture}
\addtocounter{framenumber}{-1}
}
}
\frame{}\frame{}\frame{}
\section{Third section}
{
\setbeamertemplate{footline}{}
\frame{
\begin{tikzpicture}[remember picture,overlay]
\fill[blue]
([yshift=0pt]current page.west) rectangle (current page.north east);
\node[anchor=center]
at ([yshift=10pt,xshift=0pt]current page.center)
{\parbox[t]{\textwidth}{\centering%
\usebeamerfont{author}\textcolor{white}{%
\textpdfrender{
TextRenderingMode=FillStroke,
FillColor=white,
LineWidth=.1ex,
}{\insertsection}}}};
\end{tikzpicture}
\addtocounter{framenumber}{-1}
}
}\frame{}\frame{}\frame{}
\section{Conclusion}
\frame{}
\end{document}
Does someone knows how to proceed in this case?
Best, Humberto

