I'm trying to create a header for the letter class. For some reason, the return address is bleeding into the header. How do I prevent this? PDF output and code are attached.
Thank you for your time!
Simon
Code: Select all
\documentclass{letter}
\usepackage{graphicx}
\usepackage{fancyhdr}
\pagestyle{fancy}
\chead{\includegraphics[scale=0.4]{/Users/simon/Documents/Laurier_Administration/Letterhead/wlu_logo.jpg}\\\emph{Founded in 1911}}
\cfoot{}
\signature{Simon J. Kiss}
\address{Simon J. Kiss \\ 73 George Street \\ Brantford, ON \\N3T2Y3}
\begin{document}
\begin{letter}{Recipient's \\ Address}
\opening{To Whom It May Concern:}
\thispagestyle{fancy}
Text Text Text
\closing{Yours truly,}
\end{letter}
\end{document}