So, I spend like few hours trying to fix my problem. I've got an image that I want to stay at the SAME position during all the slide. And on other side, I want a list of item with overlay/replacing tricks.
To do that, I used this code (by the way, the itemize with only isn't optimize at all, but I want to replace previous item, so I don't know how to do it in one line):
\documentclass[hyperref={pdfpagemode=FullScreen},xcolor=table,t]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mwe}
\begin{document}
\begin{frame}
\frametitle{Frame Title}
\begin{minipage}[c]{0.24\textwidth}
\includegraphics[width=\textwidth]{example-image}
\end{minipage}
\hfill
\begin{minipage}[c]{0.74\textwidth}
\includegraphics<1-2>[width=\textwidth]{example-image-a}
\includegraphics<3>[width=\textwidth]{example-image-b}
\only<1>{
\begin{itemize}
\item blablabla
\end{itemize}
}
\only<2>{
\begin{itemize}
\item blablabla
\item blablabla
\end{itemize}
}
\only<3>{
\begin{itemize}
\item blablabla
\end{itemize}
}
\end{minipage}
\end{frame}
\end{document}
As you can see there, the image on the left is moving vertically. But why ? Image is moving with the item apparition... How to deal with the apparitions without moving the image ?


beamermaintainers. Even if many people involved frequent this site it is better to have this officially logged at https://github.com/josephwright/beamer/issues – moewe Sep 06 '18 at 13:53beamerexpert. But surely the other issue is worth a bug report? – moewe Sep 06 '18 at 14:13