This is to get rid of dotted lines that comeup around a link on a webpage when the link is clicked. As you see in the image what I am referring to.
To get rid of this nag there are two ways.
- Add the following code between <head></head> of your page (thanks Bacon for this)
<style type="text/css">
a
{
-moz-outline: none 0;
outline: none 0;
}
</style>
Or add the following lines to your css file
a {
outline: none;
}
If you are a WB user then you may download the extension for this
Sorry, this content is available only for logged in users.
Download
Login or register.



sending...