Possible Duplicate:
Can I have framed blocks in beamer?
Is it possible to increase the border width of a block? I have identified the following section of code as being responsible for the block layout:
\setbeamertemplate{block begin}{
\vskip.75ex
\begin{beamercolorbox}[rounded=true,shadow=true,leftskip=1.5cm,colsep*=.75ex]{block title}%
\usebeamerfont*{block title}\insertblocktitle
\end{beamercolorbox}%
{\ifbeamercolorempty[bg]{block body}{}{\nointerlineskip\vskip-0.5pt}}%
\usebeamerfont{block body}%
\begin{beamercolorbox}[rounded=true,shadow=true,sep=.75ex,vmode]{block body}%
%\ifbeamercolorempty[bg]{block body}{\vskip-.25ex}{\vskip-.75ex}\vbox{}%
}
\setbeamertemplate{block end}{
\end{beamercolorbox}
}
However, the only things I can seem to change is foreground and background color, and shadow. But what I want to do is make a strong, colored border around the whole block. Is this possible?

beamercolorboxdoes not have this option. The options for it are listed on pages124-125of the beamer manual. To get boxes with frames you can useTikZormdframed. – Roelof Spijker Apr 10 '12 at 12:12