Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How to change light blue in input boxes

How to change light blue in input boxes

Locked

Views: 1,435

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
26 Sep 2007, 11:18 PM
#1
audleman avatar

audleman

New Zenner

Join Date:
Jul 2007
Posts:
69
Plugin Contributions:
0

How to change light blue in input boxes

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

26 Sep 2007, 11:35 PM
#2
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: How to change light blue in input boxes

css files are in includes/templates/your_template/css

If you need more help, a like to your website should be given.

27 Sep 2007, 5:49 PM
#3
rstevenson avatar

rstevenson

Totally Zenned

Join Date:
Nov 2006
Location:
Dartmouth, NS Canada
Posts:
2,400
Plugin Contributions:
0

Re: How to change light blue in input boxes

Look for something like this...

input:focus, select:focus, textarea:focus {
	background: #E4FEF5;
	}

Either eliminate it and let the browsers do their default thing, or change it to a colour you prefer.

Rob

27 Sep 2007, 8:29 PM
#4
audleman avatar

audleman

New Zenner

Join Date:
Jul 2007
Posts:
69
Plugin Contributions:
0

Re: How to change light blue in input boxes

Thanks Rob! I didn't know about the :focus CSS element.

Kevin