There are other things on SO regarding this, but none of the solutions seem to work.
I'm trying to get rid of the light blue border that Google Chrome puts around any input box. My code:
#alphatxt:focus {
border: 0;
outline:none;
}
It works on buttons but doesn't on any input field It still doesn't remove the border, I've tried multiple different techniques that have been recommended but still no joy.
Can this be done?
Thanks