My text and the top right page number seem to intersect when using fancyhdr:
\documentclass[a4paper,oneside,12pt]{report}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{bm}
\usepackage{graphicx}
\linespread{1.5}
\usepackage{subfigure}
\usepackage{float}
\usepackage{url}
\setcounter{secnumdepth}{5}
\usepackage{hyperref}
\usepackage [numbers,square,sort]{natbib}
\usepackage{ulem}
\usepackage[cm]{fullpage}
\addtolength{\voffset}{1.0cm}
\usepackage{pslatex} % for times new roman font
\usepackage[nonumberlist]{glossaries}
\usepackage[top=2cm, bottom=2.5cm, left=3.5cm, right=2.5cm]{geometry}
\usepackage{fancyhdr}
%\addtolength{\textheight}{3.5cm}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\makeglossaries
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\newcommand{\abs}[1]{ \lvert #1 \rvert}
\pagenumbering{roman}
\input{./glossary.glo}
\begin{document}
\pagestyle{myheadings}
\input{./chapters/titlepage.tex}
\input{./chapters/declaration.tex}
\input{./chapters/dedication.tex}
\input{./chapters/abstract.tex}
\tableofcontents
\listoftables
\listoffigures
\include{./chapters/acknowledgement.tex}
\pagenumbering{arabic}
\include{./chapters/introduction}
\include{./chapters/theory}
\include{./chapters/literature}
\include{./chapters/methodology}
\include{./chapters/results}
\include{./chapters/discussion}
\include{./chapters/conclusion}
\printglossaries
\begin{small}
\bibliographystyle{ieeetr}
\bibliography{projbib}
\end{small}
\end{document}

myheadingspagestyle, but I cannot see its declaration in the code you pasted. Also, what is the purpose of including packagefullpageif you also set the margins withgeometry? – JLDiaz Jul 31 '12 at 9:28LaTeXcode, you should always try to trace back exactly what the cause it (at least as far as possible) and remove all irrelevant code. In this way you can provide a minimal working example (MWE), which allows us to give you much better advice. – canaaerus Jul 31 '12 at 9:42