My header logo is about 3,5 x 6cm. The footer logo is about 3 x 20cm.
The header is shown on the correct place, but the footer is not shown at all. How should I change the geometry so that the footer is shown?
\documentclass[12pt]{article}
\usepackage{geometry} % customize page layout
\usepackage{graphicx} % support for graphics
\usepackage{fancyhdr} % headers and footers
\geometry{
a4paper,
left=20mm,
top=20mm,
headheight=110pt,
voffset=100pt,
footskip=50pt
}
\pagenumbering{gobble} % sets page numbering off
\pagestyle{fancy} % set the pagestyle to fancy to include headers and footers
\fancyhf{} % clear the header and footer
\renewcommand{\headrulewidth}{0pt} % no horizontale ruler under header
\fancyhead[L]{
\includegraphics[width=6cm]{logo.png}
}
\fancyfoot[L]{
\includegraphics[width=20cm]{footer.jpg}
}
\begin{document}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{document}
