I defined a new command in order to create an empty box with a title. The code is the following:
\newcommand{\mybox}[2]{
\textbf{\emph{#1}}
\vspace{2mm}
{\centering\fbox{
\begin{minipage}{\textwidth}
\hfill\vspace{#2}
\end{minipage}
} }
}
The problem is that when I used this exact same code without the new command I defined, the output was what I expected - a bold italic title and below that, an empty box.
However, when I use it with the new command, fox example \mybox{Title}{1in} the box is next to the title! It is very confusing!
I would appreciate your help, thank you very much in advance!

tcolorboxormdframedto create a titled box. There are many examples here for both packages. http://tex.stackexchange.com/questions/169096/definitions-theorems-with-description-inside-a-box-and-the-title-above-the-b is quite similar to your box (plus a numbering which can be removed). – Thomas F. Sturm Apr 07 '14 at 13:42