• Does anyone know how to change the orange/yellow border that appears when the user clicks in a field?
    I’m just looking to change the color but can’t find a css rule related to it?

Viewing 1 replies (of 1 total)
  • Hey!

    [ Moderator note: please wrap code in backticks or use the code button. The single quote does not work. ]

    input[type=text], input[type=email], textarea
    {
    	border: none;
    	outline: none;
    	border: 1px solid #78C6BE;
    	font-family:"Times";
    	font-size:13px;
    	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
    	transition: border linear 0.2s, box-shadow linear 0.2s;
    }

    Try this

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Contact Form 7] Change border color when input is selected’ is closed to new replies.