I would like to add a bibliographic reference on my second slide. The contents of the bibliographic reference should be placed above all other contents. I tried the following, but the problem is that on the second slide, the beamercolorbox doesn't appear in front of the image. It is rather on the bottom
\documentclass[10pt,xcolor=table]{beamer}
\usetheme{metropolis}
\setbeamertemplate{frame footer}{\insertshortauthor}
\definecolor{Green}{HTML}{9BBB59}
\title{Some title}
\author{Author}
\begin{document}
\begin{frame}{MyFrame}
\visible<2>{
\scriptsize{\setbeamercolor{postit}{bg=Green}
\begin{beamercolorbox}[sep=1em,wd=\textwidth]{postit}
\textit{A bibliography will be here!}
\end{beamercolorbox}
}
}
\begin{minipage}{.7\linewidth}
\vspace{15pt}
\begin{flushleft}
Some text to the left
\end{flushleft}
\end{minipage}
\begin{minipage}{.3\linewidth}
\begin{flushleft}
\begin{picture}(0,0)
\put(330,70){\makebox(0,0)[rt]{\includegraphics[width=4cm]{example-image-a}}}
\end{picture}
\end{flushleft}
\end{minipage}
\begin{minipage}{.7\linewidth}
\vspace{15pt}
\begin{flushleft}
More text to the left
\end{flushleft}
\end{minipage}
\begin{minipage}{.3\linewidth}
\begin{flushleft}
\begin{picture}(0,0)
\put(310,55){\makebox(0,0)[rt]{\includegraphics[width=3cm]{example-image-a}}}
\end{picture}
\end{flushleft}
\end{minipage}
\vspace{10pt}
\begin{minipage}{.7\linewidth}
\vspace{15pt}
\begin{flushleft}
Even more text to the left
\end{flushleft}
\end{minipage}
\begin{minipage}{.3\linewidth}
\begin{flushleft}
\begin{picture}(0,0)
\put(200,50){\makebox(0,0)[rt]{\includegraphics[width=4cm]{example-image-a}}}
\end{picture}
\end{flushleft}
\end{minipage}
\end{frame}
\end{document}
Could you help me to achieve what I want? Any suggestions? Thank you!!
This is now:
But I want to have the green box above all other contents.

\visiblefor overlay. – Al-Motasem Aldaoudeyeh May 18 '19 at 11:37\visible, but still is not what I want... the green box should be above all other contents – mjbsgll May 19 '19 at 08:12beamermanual when I was learning it. I do not remember seeing anything related to the priority of contents appearance when they overlap. I would like to see the answer to this question as well – Al-Motasem Aldaoudeyeh May 19 '19 at 14:40