Hello,
I am using this css to remove dotted borders which appear when hyperlinks are clicked
a:active, a:focus, input {
outline: 0;
outline-style:none;
outline-width:0;
}
This is working fine, but doesn't work on input buttons which have background images.
For Eg:
Please help me remove dotted border because it ruins the whole design.
Thank You.