I have tiny problem. I'm using minipage to put two pictures side by side in a two column article. The code is
\begin{figure*}
\centering
\begin{minipage}[b]{.49\textwidth}
\includegraphics[clip,scale=0.32]{Graph1}
\caption{Ovisnost savijenosti šipke $\lambda$ o primjenjenoj sili $F$.}
\label{fig:graph1}
\end{minipage}\hfill
\begin{minipage}[b]{.49\textwidth}
\includegraphics[clip,scale=0.32]{Graph2}
\caption{Logaritamski graf ovisnosti savijenosti $\lambda$ o primjenjenoj sili $F$.}
\label{fig:graph2}
\end{minipage}
\end{figure*}
And the output is

I have set the captions to small
\usepackage[font={small}]{caption}
The problem is that the captions are aligned, and not the pictures! And ofc I need the pictures to be aligned... So how can I correct this problem? I was thinking of adding a blank character or sth like that, in the first caption so that they would align, but I have no luck with that...
Any help is appreciated...

boption to minipage is aligning your minipages at the bottom. Try replacing it with[t]– Seamus May 20 '11 at 11:41