Remove Border Outline From Link

Add this following CSS code to your pages to remove that annoying dotted line border that appears when you click a link!

a:active, a:focus {
outline: 0;
border: 0;
text-decoration: none;
-moz-outline-style: none;
}