Quote:
Originally Posted by flowersgone
I noticed dotted outlines when I click on links on the page and, more clearly, when I click on the links and hit the back button.
Your file style.css has a rule
HTML Code:
a, a:link, a:active, a:visited {
color: silver;
font-family: "Comic Sans MS";
text-decoration: none;
}
which you might enhance to
HTML Code:
a, a:link, a:active, a:visited {
color: silver;
font-family: "Comic Sans MS";
text-decoration: none;
outline: 0;
}
to fix the problem.
fg
|
Not seeing that on my Mac. I modified my stylesheet to your suggestion though, thanks.