I am trying to make a document, but I do not need hyperref to label links that are internal (since the document is only a few pages long). I would, however, like for links to show up that point outside of the document, e.g. urls and external files. I do not want equations, page number references, footnotes, etc. showing up.
I am referring specifically to the colored borders that appear around links (but don't print).
\documentclass{article}
\usepackage{hyperref}
\begin{document}
Here's some test text with a footnote\footnote{Some text, but the footnote shouldn't show up as a link.}.
\url{http://www.google.com} %this should show up as a link.
\href{http://www.google.com}{Go to Google} %this should also show up as a link.
\end{document}
I can't set hidelinks in the options and then set urlbordercolor it seems, and I have no idea how to set a border color to be transparent (or else I could try setting each border color type to transparent). I also don't know what color that blue is for the I did find from this post that the urlbordercolor by default, and I really like it, so I'd rather not change it if possible.urlbordercolor is {0 1 1} by default; I just typed it in wrong originally, so I thought I had it wrong.
I can't change the link borders to all white because it causes some clipping issues:

So I think if I wanted to change that, the links would need to be made transparent.
Thanks!


\hyperlink{www.google.com}{Go to Google}instead of\hyperref{www.google.com}{Go to Google}? – leandriis Aug 23 '20 at 14:49\hyperrefinstead of\href. Sorry about that. I am not sure what the difference is between\hrefand\hyperlink? – Publius Aug 23 '20 at 14:50www, should I add thehttps://part as well? – Publius Aug 23 '20 at 14:53\usepackage[colorlinks,linkcolor=black,citecolor=black]{hyperref}results in the desired output? – leandriis Aug 23 '20 at 14:55colorlinksI get the borders back, but unfortunately all of the others come back too. – Publius Aug 23 '20 at 14:58http://on the links. Thanks for the tip! – Publius Aug 23 '20 at 14:59\hypersetup{citebordercolor={1 1 1},linkbordercolor={1 1 1}}changes the border color to white while keeping the light blue border color of url links. – leandriis Aug 23 '20 at 15:04