Currently, my document is of the following form:
\documentclass[11pt,a4paper]{article}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\section{Introduction to Problem}
There is the relation
\begin{equation}
R = k^2, \label{eq:myequation}
\end{equation}
which we have previously discussed.
\section{Potential Solution}
Using the relation in Equation~(\ref{eq:myequation}), we can ...
\end{document}
Given the way the above document looks when compiled with pdfTeX 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian), I wish to make only 2 changes:
- No colored boxes surrounding any of the TOC, figure, equation, etc., links
- Dotted lines connected the TOC entries to their corresponding page numbers on the right side of the page
How can I make these changes?

\documentclass{...}and ending with\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to help you. Help them help you: remove that one hurdle between you and a solution to your problem. Are you using LaTeX? If yes you probably mean\usepackage. What documentclass are you using? For the colored boxes take a look at: http://tex.stackexchange.com/questions/823/remove-ugly-borders-around-clickable-cross-references-and-hyperlinks – someonr Dec 30 '13 at 17:05[hidelinks]worked to disable the colored boxes around links. So, my only remaining question is (2), the dotted lines question. Thanks! – synaptik Dec 30 '13 at 17:21\makeatletter \renewcommand*\l@section{\@dottedtocline{1}{1.5em}{2.3em}} \makeatotherFor details and other possibilities see here: http://tex.stackexchange.com/questions/53898/how-to-get-lines-with-dots-in-the-table-of-contents-for-sections – someonr Dec 30 '13 at 17:25