I'm writing a document and I want to put in a contact section with an e-mail address and a phone number. To signify that, I'm using wasysym and bbding for \phone and \Envelope symbols respectively. When I create the document, the e-mail address is not centered with the envelope; it's a little too low. How do I raise it?
EDIT: code:
\documentclass[margin]{res}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{wasysym}
\usepackage{bbding}
\usepackage{hyperref}
\begin{document}
\Envelope \ \href{mailto:my@mail.com}{my@mail.com} \\
\phone \ 123 456 789
\end{document}
\raisebox{<amount>}{<content>}. – Martin Scharrer♦ Sep 23 '11 at 9:30