Problem
I have various footnotes, which are hyperlinked from the text to the bottom of their respective pages. When I click on the hyperlinks (in the main text), they always take me to the first page of my document. I also have footnotebackref which puts a hyperlink at the footnote to take the reader back to the main body of text and these links for fine.
Edited MWE
After a lot of deletion, I have managed to reduce the document to the following lines. One might say that I have found the problem, since the removal of \usepackage[hang, flushmargin]{footmisc} stops the problem, but I would still like to have non-indented footnotes.
\documentclass{article}
\usepackage[usenames,dvipsnames]{color}
\usepackage[colorlinks=true]{hyperref}
\usepackage[hang, flushmargin]{footmisc} %Problem line.
\usepackage{footnotebackref}
\begin{document}
\tableofcontents
\newpage
\section{Section}
This is some text\footnote{This is a footnote.}.
\end{document}

\documentclassand ends with\end{document}). There is no way each of the 100 lines of your preamble are an integral part of the problem you are describing; at the same time, clearly your call tohyperref` is part of the current problem and will be part of the solution as well. – jon Sep 15 '12 at 15:50footmiscanother package I'm using? – User 17670 Sep 15 '12 at 18:53footmisc's manual: “Thehyperrefpackage has ambitions to make hyperlinks from footnote marks to the corresponding footnote body; naturally this causes grief tofootmisc, and unfortunately no remedy is currently known. If you usefootmisc, suppresshyperref'shyperfootnotes, by loading it as:\usepackage[hyperfootnotes=false,...]{hyperref}Further work on the interaction between the two packages is proposed, but not yet scheduled.” – cgnieder Sep 15 '12 at 19:05