I am working on my own Beamer theme for use in presentations. Along the bottom (in the footline) I want to have three color boxes in a row which have different colors.
Within my theme.sty file I have done this by:
\setbeamertemplate{footline}{
\leavevmode
\begin{beamercolorbox}[wd=0.33\paperwidth,ht=7pt,dp=4pt]{footerbox}
\centering
\insertauthor
\end{beamercolorbox}
\begin{beamercolorbox}[wd=0.34\paperwidth,ht=7pt,dp=4pt]{footerboxcenter}
\centering
\inserttitle
\end{beamercolorbox}
\begin{beamercolorbox}[wd=0.33\paperwidth,ht=7pt,dp=4pt]{footerbox}
\centering
\insertframenumber/\inserttotalframenumber
\end{beamercolorbox}
}
What I end up with is
This is basically what I want except without the space between the boxes. The exact content and ratios of each box may change - the point here is just multiple color boxes on one line. I've tried playing around with various formatting, columns, minipages, hspace, etc, and have not managed to eliminate this space.
I'm imagining there's some command or argument I'm missing here, or there may be a more "LaTeX-ish" way of accomplishing the effect I want. Is there anything I'm doing obviously wrong? And/or is there a more appropriate way to put several color boxes on one line?

