EDIT : How could I put in bold what is before \email ? Something like \email{\textbf{bla bla}} doesn't work.
When using moderncv to create my CV, I type the following commands :
\documentclass[12pt,a4paper]{moderncv}
\moderncvtheme[blue]{classic}
\usepackage[utf8]{inputenc}
\usepackage{color}
\definecolor{nav}{rgb}{0.22,0.45,0.70}% light blue
\usepackage[inner=2.2cm,outer=2.2cm,top=1cm,bottom=2cm]{geometry}
\firstname{Name}
\familyname{\textsc{Name}}
\title{Name}
\address{Name}{Name}
\mobile{045454}
\email{aaa@aaa.fr}
\begin{document}
\maketitle
\end{document}
I would like anyhting there in this "nav" color, \mobile and \address symbols included.
\renewcommand*{\emaillink}[2][]{% \ifthenelse{\equal{#1}{}}% {\textbf{\href{mailto:#2}{#2}}}% {\textbf{\href{mailto:#2}{#1}}}}P.S. spaces are new lines. – karlkoeller Sep 06 '13 at 19:11