Hello,
I'm facing an annoying problem where a button's border colour changes when I click on the text fields in the same form.
I could use onfocus="blur();" on the text fields to resolve this, but then they will lose focus when selected.
So, I'm trying to find out where I can define this colour that the border changes to when text fields are selected. (i.e use camouflage so change of colour is not noticed)
// my css
input
{
padding: 4px;
color:#888888;
border: 1px solid #B4CFEC;
}
// my html
<form name="details" method="post" action="#">
<fieldset>
<input type="text" name="email" size="35" value="email" />
<input type="submit" name="login" value="login" />
</fieldset></form>
Any thoughts?
Thanks,
Sid