[Tex/LaTex] Changing Margins in Stockton Beamer Theme

beamermargins

I am creating a presentation with beamer using Stockton theme. You can find tex file here

I have two questions to ask. How can I change the margins of a slide? For the example below, I would like to change the margins following the black lines.

enter image description here

Best Answer

You can basically use \setbeamersize{text margin left=1em,text margin right=1em} to set the margins on the left and right. Just change the 1em to whatever margin you like.

\documentclass{beamer}
\usetheme{Stockton}
\usepackage{lipsum}

\setbeamersize{text margin left=1em,text margin right=1em}

\begin{document}

 \begin{frame}
  \frametitle{Test}
  \begin{itemize}
    \item   \lipsum[4]
    \item   \lipsum[4]
  \end{itemize}
 \end{frame}
\end{document}

enter image description here

But please do not use that much text on a slide, as percusse mentioned...

PowerPoint Presentation Advice