How would I get rid of the date, and the numbers 1 and 2? My latex code is below. I cant post images as Im a new user, sorry!
\documentclass[10pt]{article}
\begin{document}
\title{Banana Cake}
\maketitle
\section{Ingredients}
\begin{itemize}
\item The first item
\item The second item
\item The third etc
\end{itemize}
\section{Method}
\begin{enumerate}
\item The first item
\item The second item
\item The third etc
\end{enumerate}
\end{document}

\setcounter{secnumdepth}{-2}in the preamble and use\section; this would take care of headers, should\pagestyle{headers}be called. – egreg Oct 16 '12 at 16:12