I'm wondering how to change the vertical position of the text in a frametitle? Take for instance this frametitle:

I'd like to place the text, in this case "Introduction", a bit higher such that it is exactly in the vertical center.
\documentclass{beamer}
\usepackage{textpos}
\usepackage{tikz}
%remove navigation symbols
\setbeamertemplate{navigation symbols}{}
\definecolor{TUeRed}{RGB}{170,0,0}
\definecolor{TUeBlue}{RGB}{0,68,170}
\addtobeamertemplate{frametitle}{}{%
\begin{textblock*}{100mm}(.95\textwidth,-1cm) \tikz {\fill[white] (0,0) -- %
(2cm,0) -- (2cm,1.1cm) -- (0.5cm,1.1cm) -- cycle;\node[TUeBlue] at %
(0.8cm,0.5cm) {\normalsize\insertpagenumber};} \end{textblock*} }
\setbeamercolor{frametitle}{bg=TUeRed}
\setbeamercolor{frametitle}{fg=white}
\begin{document}
\begin{frame}
\frametitle{Introduction}
Some text
\end{frame}
\end{document}
[Edit] Changed the LaTeX code, thanks @Percusse!
!in front of it to turn it into a link. A moderator or another user with edit privileges can then reinsert the!to turn it into an image again. – Tobi Mar 20 '12 at 10:51textblockenvironment. – percusse Mar 20 '12 at 12:04\addtobeamertemplate{frametitle}{}{% \begin{textblock*}{100mm}(.95\textwidth,-1cm) \tikz {\fill[white] (0,0) -- (2cm,0) -- (2cm,1.1cm) -- (0.5cm,1.1cm) -- cycle;\node[TUeBlue] at (0.8cm,0.5cm) {\normalsize\insertpagenumber};} \end{textblock*} }. (Usingtikzpackage) – percusse Mar 20 '12 at 13:43\addtolength{\topmargin}{-1mm}seems to move the entire frametitle upwards. Now my text is vertically centered, but of course the height of the frametitle is less. Is there perhaps a way to change the margin/padding inside the frametitle? – Ailurus Mar 21 '12 at 15:11beamersources (beamerouterthemedefault.sty, ll. 140-160) shows that the off-centering of the frame title is caused by inserted\struts (l. 150). If they were removed, the frame title would be exactly vertically centered. I strongly advise you, however, not to do that - different frame titles with different heights would wiggle around vertically, which would look rather horrible in a presentation! – diabonas Mar 26 '12 at 11:16