Logo in a LaTeX document header/footer
Easily accomplished using the 'fancyhdr' package:
All of that goes into the preamble of the document.
\usepackage{fancyhdr}
\renewcommand{\headheight}{0.6in}
\setlength{\headwidth}{\textwidth}
\fancyhead[L]{}% empty left
\fancyhead[R]{ % right
\includegraphics[height=0.53in]{img-file}
}
\pagestyle{fancy}
All of that goes into the preamble of the document.