hi,
I'm using Drupal for a website, and I've a link "Unselect All" to deselect all items.
How can I remove the dotted line around "Unselect All" when I click on it ?????
This is the link: http://www.sanstitre.ch/drupal/
thanks
hi,
I'm using Drupal for a website, and I've a link "Unselect All" to deselect all items.
How can I remove the dotted line around "Unselect All" when I click on it ?????
This is the link: http://www.sanstitre.ch/drupal/
thanks
a.bef-toggle:link, a.bef-toggle:visited, a.bef-toggle:active {
outline: none;
}
Please take heed of David's comments on the question though, this has accessibility side effects that you need to be aware of.
I simply set outline
to none
for all and any link:
a {
outline: none;
}
Side Note: This property does not work however in IE < 8.