On the first page, I put "corresponding author" in a footnote. However, there is unwanted indentation before * (see the picture below).
I tried \noindent but didn't work. MWE is at below. Thank you!
\documentclass[twocolumn, twoside]{article}
\usepackage{authblk}
\usepackage{multicol}
\usepackage{fancyhdr}
\begin{document}
\begin{multicols}{1}
\title{\fontsize{24pt}{10pt}\selectfont\textbf{The Title Here\\}\vspace{1ex}}
\author[1,*]{Author One}
\affil[1]{\small University of California;}
\date{}
\end{multicols}
\twocolumn[
\maketitle
\thispagestyle{fancy}
\begin{abstract}
{\fontfamily{pnc}\selectfont
\textbf{} Following the first case series of Hodgkin lymphomas \\
}
\end{abstract}
]
\renewcommand{\thefootnote}{*}
\footnotetext{\noindent Correspondence: John Doe, 1234 Main Street, City Name, CA 00000. Tel: 123-456-6666; Fax: 123-456-4545; Email: johndoe@thisu.edu}
\section{Introduction}
Although Pathology is as ancient as 17th century BC Egyptian medicine, Hematopathology can only be historically traced back to 1832 AD when Thomas
\end{document}


\title. That's why I used titling. But this conflicts with authblk. Also, as I read your question, you wanted this to apply to the footnote following the author name but not to all footnotes throughout the paper, whereas this use of footmisc will change all footnotes, I think. On the other hand, if that's wanted here, obviously footmisc is a better solution than mine. But you should still avoid explicit mark up in\titleetc. – cfr Jan 24 '16 at 13:47