Changing style of latex description lists

latex

This should be an easy question for someone out there. I have a description list

\begin{description}
\item[Name:]  Halpo
\item[Email Address:] halpo@users.mysite.com
\item[Address:]  1234 Ivy Ln \\ Springfield, USA
\end{description}

It comes back as

Name: Halpo

Email Address: halpoe@users.mysite.com

Address: 1234 Ivy Ln

 Springfield, USA

This is for an official document that has style requirements. The First thing is how do I turn off the bold? second how do I have all the text line up with the item labels and still be left justified?

Best Answer

If you \usepackage{enumitem} you may get what you like:

\begin{description}[style=multiline,leftmargin=3cm,font=\normalfont]
\item[Name:]  Halpo
\item[Email Address:] halpo@users.mysite.com
\item[Address:]  1234 Ivy Ln \\ Springfield, USA
\end{description}

Results in:

Results

Check here for full package documentation.