Howdy lenamist,
The culprit is on line 67 of your style.css:
input:hover, input:focus{
background-color:purple;
color:white;
border: 1px solid black;
}
This conflicts with our default styles. If you want to change that to the following it should match the rest of your site:
input:hover, input:focus, body #tribe-community-events input[type=”text”]:hover, body #tribe-community-events input[type=”text”]:focus, body #tribe-community-events textarea:hover, body #tribe-community-events textarea:focus {
background-color:purple;
color:white;
border: 1px solid black;
}
Please let me know if that works. Thanks!
– Brook