I'm pretty much finished the document I'm working on, but now that I'm adding the footer I have run into some issues. I'm using fancyhdr and have rather small margin, so the footer doesn't really fit atm. It's also not in the center of the page and I've got a strange line at the top that I don't know where it's coming from. I realize that I will probably have to adjust my margins a bit, but I need to keep them as close as possible to current as I am matching the style of a previous document and have some large flowcharts.

\documentclass{article}
%%%%% Packages and configuration %%%%%
\usepackage[firstpage]{draftwatermark} % watermark
\SetWatermarkText{\textsc{Confidential}}
\SetWatermarkScale{4}
\SetWatermarkColor[gray]{0.9}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % clear all fields
%\fancyfoot[LE,CO]{\thepage} % page number in "outer" position of footer line
%\fancyfoot[RE,LO]{Message of the day} % other info in "inner" position of footer line
\lfoot{Lorem\\Ipsum}\cfoot{dolor sit\\amet \\ \thepage}\rfoot{Rev. \#\\ \today}
\usepackage[margin=0.5in]{geometry} % Advanced page geometry configuation
%\usepackage[cm]{fullpage} % Alternate option for page configuration
%\usepackage[letterpaper, top=0.7in, bottom=0.9in, left=0.7in, right=0.7in, showframe]{geometry}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{lipsum}
\begin{document}
\lipsum[1-5]
\end{document}


fancyhdraftergeometry. – Werner Sep 21 '12 at 18:07geometry'sincludefootoption? – henrique Sep 21 '12 at 18:10\fancyfoot[C]{\thepage}is not really centered... – Werner Sep 21 '12 at 18:13