I wish to change the color of boxed links to red. But the code below still produces cyan links. What am I doing wrong?
\documentclass{article}
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{%
colorlinks=false,
linkbordercolor=red
}
\begin{document}
\href{http://www.tex.stackexchange.com}{Stack exchange link}
\end{document}
