If you don't need the sidebar in the whole presentation, perhaps it worth to use
\setbeamersize{sidebar width left=0pt}
in the preamble.
Example:
\documentclass[18pt]{beamer}
\mode<presentation> {
\usetheme{Hannover}
\usecolortheme{dolphin}
\usepackage{lipsum}
\useinnertheme{rounded}
}
\setbeamersize{sidebar width left=0pt}
\begin{document}
\begin{frame}
\frametitle{Test}
I wrote some text, which should appear on the left.
\end{frame}
\end{document}
The result:

To have only one frame without sidebar, the previous solution does not work. So, you might want to do some manual work:
\documentclass[18pt]{beamer}
\usepackage{lmodern}
\mode<presentation> {
\usetheme{Hannover}
\usecolortheme{dolphin}
\usepackage{lipsum}
\useinnertheme{rounded}
}
%\setbeamersize{sidebar width left=0pt}
\begin{document}
\begin{frame}{First test}
I wrote some very long text, which should appear on the left.
\end{frame}
\begin{frame}[plain]{Test}
\hspace*{-1.5cm}\parbox[t]{\textwidth}{
This is some text.
\begin{itemize}[<+->]
\item one
\item two
\end{itemize}
I wrote some very long text, which should appear on the left.
}
\end{frame}
\begin{frame}{Another test}
I wrote some very long text, which should appear on the left.
\end{frame}
\end{document}
Adjust the space as you like, but remember that in this way the right margin is shifted on the left.
\usetheme[width=0pt]{Hannover}– jens_bo Oct 14 '13 at 06:47