I'm using the fancyhdr package, and all is working well apart from the first line of the text on each page is way too close to the header line.
Any ideas how to move the text down a bit?
Thanks in advance

Maxine
Following the links in the mentioned topic would have shown you how to do this. There are detailed instructions. However, this behaviour is not normal. So it would have been interesting to see what's causing it. Your solution appears improper.maxiness wrote:Sorry, I wasnt really sure what I have to include to get a MWE. [...]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{fancyhdr}
\usepackage{blindtext}
% Setup for page layout (fancyhdr)
\fancyhf{}
\lhead{\itshape ST215 Assessment I}
\rhead{\itshape Linear Regression in SPLUS}
\rfoot{\thepage}
\pagestyle{fancy}
\begin{document}
\blinddocument
\end{document}