Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Border color when focused › Reply To: Border color when focused
November 24, 2022 at 2:55 pm
#40118
Keymaster
Hi,
I assume you want to change the input border when it is focused via custom CSS?
Well, it depends on the layout, and you may also need javascript for that – but for some cases this should work:
input.orig:focus {
box-shadow: 0 0 0 2px inset red !important;
}