Here is the best example I have so far, but it is still unsatisfactory because the caption is not RIGHT NEXT to the image, and the image is in an odd spot, when I want it to be on the left side.
Some preamble on why I need it to be exactly like this:
I'm making a poster with beamer, with a bunch of other elements. Using the \frame style will mess up with everything else I've done for the same page. I felt like redacting the other parts will take too much work, so I only posted the part I'm having trouble with.
I can't use the \SCfigure command with beamer, so that alternative doesn't work for me. It just hangs while compiling.
The \floatrow packages clash with the block contents, so that won't work either.
Here is a crudely edited image in paint, of what I want:
.
My code:
\documentclass[final]{beamer}
%\mode<presentation> { %% check http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php for examples
\usetheme{Berlin} %% you should define your own theme e.g. for big headlines using your own logos
\usepackage[export]{adjustbox}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subfigure}
\usepackage{hyphenat}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{amsmath,amsthm, amssymb, latexsym}
\usefonttheme[onlymath]{serif}
\boldmath
\usepackage[size=custom,width=95,height=232.5,scale=1.98]{beamerposter} % e.g. for custom size poster
\usepackage{tikz}
\begin{document}
\begin{block}{\large \space Contacts}
\newline
\begin{figure}
\begin{columns}%
\begin{column}{0\textwidth}%
\includegraphics[height=8cm, width=7cm]{example-image}
\end{column}%
\begin{column}{0.45\textwidth}%
\caption*{Dr Person Person No 2 \newline Tel: 12345612331023 \newline Email: guyman1@person.com}
\end{column}%
\end{columns}
\end{figure}
\begin{figure}
\begin{columns}%
\begin{column}{0\textwidth}%
\includegraphics[height=8cm, width=7cm]{example-image}
\end{column}%
\begin{column}{0.45\textwidth}%
\caption*{Dr Person Person No 1 \newline Tel: 12345612331023 \newline Email: guyman2@person.com}
\end{column}%
\end{columns}
\end{figure}
\end{block}
\end{document}
And the section generated after compiling:

Sorry that this isn't an exactly minimal or even a good example, I'm particularly new with LaTeX, and I'm not sure which package to remove.
