[Tex/LaTex] moderncv classic header

header-footermoderncv

I was trying to add an additional header for every new page of my CV (2nd page and onward), but unfortunately everything I tried ended in a failure.

I've tried editing "moderncvstyleclassic.sty" and adding a new command similar to \makecvtitle command. I'm new to latex, so probably I just messed code somewhere.

\firstname{John}
\familyname{Doe}

(...) %personal info

\begin{document}

\makecvtitle % Print the CV title, so for the 1st page I don't need a new header

(...) %some info here 

\clearpage
\header %%% I need a header here

\end{document}

I was looking to add black/gray color header with fonts 18/16 like:

John Doe                                                         Curriculum Vitae  

Best Answer

@Bordaigorl Thx for hinting me in the right direction.

The problem was so simple that it's kinda stupid. So, sorry for taking your time.

I was looking for something like this:

\firstname{John}
\familyname{Doe}

(...) %personal info

\begin{document}

\makecvtitle % Print the CV title, so for the 1st page I don't need a new header

(...) %some info here 

\clearpage
\lhead{\fontsize{20}{22}\mdseries\upshape{John Doe}}
\rhead{\Large\mdseries\slshape{\color{gray}{Curriculum Vitae}}}

(...) % more info

\end{document}