Styling Search Box - Remove orange border
Does anyone have any advice on removing the orange borders (or changing the colour) from the text input box and the submit input button... when you click on these elements in the site search box an orange border appears around both. I can't seem to find a CSS class for this? I have successfully styled both using .sfsearchBox .sfsearchTxt and .sfsearchBox .sfsearchSubmit... but I can not work out how to remove the orange border that appears.
Thanks
Hi Nikola,
This is a CSS style property on 'focus', so you can manage it on all the elements where it is available by:
*:focus
outline
:
none
;