Forum Moderators: open
[edited by: tedster at 10:25 pm (utc) on April 30, 2009]
The active state of a link will have a dotted outline by default in Firefox. It can be disabled using CSS, but I'd like to caution you that doing so is against accessibility rules (try navigating with a keyboard if you cannot spot what link you'll "click" on).
To disable it add this to your CSS:
a:active {
outline:none;
}