I started using biblatex for manuscript writing, since removing url and doi information from Mendeley .bib files seemed like a strenuous task. Questions and answers here have been a great help to get me started. However, I am struggling to remove the top margin header for the \printbibliography, which is automatically added with a following preamble command:
\usepackage[
backend = bibtex,
citestyle=authoryear,doi=false,url=false,isbn=false,natbib=true,maxbibnames=99,
maxcitenames=2,
firstinits
]{biblatex}
The only way I managed to remove the margin header was by forcing some white space into the bibliography title and adding a References section.
\section*{References}
\printbibliography[title= \vspace{0.8cm}]
However, this introduces some horizontal white space between "References" title and the reference list. I am sure that there is a proper way doing this, but as a LaTeX beginner, I am having a hard time understanding the Biblatex manual. Could someone tell me how to remove bibliography top margin header, please?

