We are trying to insert a logo on top of beamer slides
It's working with e.g. this template for headline:
\defbeamertemplate*{headline}{lifbody}
{
\hskip.9\paperwidth
\includegraphics[scale=0.5]{logo_lif}
}
The problem with this is that the whole slide will be shifted from the height of the logo.
We would like to have the slide with normal vertical position, with only the new logo on top of it.
We tried another way by putting a negative vspace after the logo, like this:
\defbeamertemplate*{headline}{lifbody}
{
\begin{flushright}
\includegraphics[scale=0.5]{logo_lif}
\end{flushright}
\vspace*{-2cm}
}
The problem with this is that only a part of the logo is visible because it's on background and the title of the frame is above it.
Is there a way to have the logo in foreground or any other method to have the same title vertical alignment with a logo in the headline?