How to left-align text into the second column?
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\column{4.7cm}
\hspace{0.6cm}
\includegraphics[width=2.3cm,height=1.7cm]{images/t}
\column{\dimexpr\textwidth-4.7cm\relax}
\hspace*{-20pt}\parbox{\dimexpr\linewidth+20pt\relax}{%
\begin{itemize}
\item C.
\begin{itemize}
\item B.
\item A.
\end{itemize}
\end{itemize}
}
\end{columns}
\end{center}
\end{frame}
\end{document}
I've tried to surround the content of the second column using this \begin{flushleft}...\end{flushleft}. But nothing has changed.
Thanks!

columns. – dgs May 15 '14 at 16:19