Hi,
I'm trying to figure out how to change the light blue that shows up whenever I click on an text input box. The blue is part of the default template that comes with ZenCart, but I can't figure out where in the CSS it is defined.
Thanks,
Kevin
Hi,
I'm trying to figure out how to change the light blue that shows up whenever I click on an text input box. The blue is part of the default template that comes with ZenCart, but I can't figure out where in the CSS it is defined.
Thanks,
Kevin
css files are in includes/templates/your_template/css
If you need more help, a like to your website should be given.
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Look for something like this...
Either eliminate it and let the browsers do their default thing, or change it to a colour you prefer.HTML Code:input:focus, select:focus, textarea:focus { background: #E4FEF5; }
Rob
Thanks Rob! I didn't know about the :focus CSS element.
Kevin