Zen Cart Logo

Boxes Turned Black

Views: 917

Results 1 to 5 of 5
14 Apr 2011, 11:19 PM
#1
queenkat avatar

queenkat

Zen Follower

Join Date:
Dec 2006
Posts:
121
Plugin Contributions:
0

Boxes Turned Black

Hi!

In some of my boxes on my site, the input fields turn black when you put your cursor in them to type..

Search Box
Contact Box
Manufacturer Box

My customers are telling me this is happening, but I can't replicate it on my computers here. they are fine here.

How do I make them not turn black?

thanks

www.katsmagicalpatches.com is the site with the problem.

15 Apr 2011, 12:15 AM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Boxes Turned Black

Find and change color of this rule in your stylesheet

input:focus, select:focus, textarea:focus {
	background: #000000;
	}
15 Apr 2011, 12:31 AM
#3
queenkat avatar

queenkat

Zen Follower

Join Date:
Dec 2006
Posts:
121
Plugin Contributions:
0

Re: Boxes Turned Black

thank you for your help it workds perfectly!

8 Apr 2012, 2:34 AM
#4
aperfecthost avatar

aperfecthost

New Zenner

Join Date:
May 2005
Location:
Rockwood, Tennessee, United States
Posts:
97
Plugin Contributions:
0

Re: Boxes Turned Black

I made that change and it modifies active boxes (where cursor is) to be the color I chose.
However, what I want is to change the way all boxes look without them being clicked on.

for instance, when a page loads with an input box, I want all the borders of the boxes to be this color (#9ba038) because the default color does't show on my screen so people don't know to type in the box.

Please help. Thank you

8 Apr 2012, 2:41 AM
#5
nigelt74 avatar

nigelt74

Totally Zenned

Join Date:
Sep 2005
Location:
Waikato, New Zealand
Posts:
1,558
Plugin Contributions:
1

Re: Boxes Turned Black

try something like this

input, select, textarea {
border:2px #9ba038 solid;
}