|
TIP: How to remove dotted outlines from your webpage (ie when u click on something)
Add this to your CSS style sheet (which is the part of the template between the <head>and </head> elements that contain a lot of these { }) :
a:active
{
outline: none;
}
a:focus
{
-moz-outline-style: none;
}
No more dotted borders!
|