One issue I am experiencing is with a color that shows up on my input and textarea fields when they are focused:
This issue seems to be present in Chrome, but not in Firefox.
I attempted to change the color using jQuery:
if ($('body').is('#contact')) {
$('input').focus(function() {
$(this).css('border', '2px solid #ce1443');
console.log('focus');
});
$('textarea').focus(function() {
$('textarea').css('border', '2px solid #ce1443');
});
}
However, all this seemed to do was increase the size of the current border...it did not remove the blue color as intended.