Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Change form field background colors on contact us

Change form field background colors on contact us

Views: 920

Results 1 to 5 of 5
26 Sep 2012, 2:47 AM
#1
tracys avatar

tracys

New Zenner

Join Date:
Sep 2012
Posts:
4
Plugin Contributions:
0

Change form field background colors on contact us

I have a client who wants a site with a black background. Unfortunately, the form fields on contact us are set in such a way that, when you click to enter info, the field turns black, but the text stays black as well, so you aren't able to see what you are typing until you move to the next field. I am sure it is in a stylesheet somewhere, but I am not finding very easily tonight. Any help on where to locate this would be greatly appreciated ;-)

26 Sep 2012, 7:17 AM
#2
fjtv avatar

fjtv

New Zenner

Join Date:
May 2011
Posts:
17
Plugin Contributions:
0

Re: Change form field background colors on contact us

Add a div to the contact us form

<div id="contact_form"></div>

add this line to css #contact_form input:focus, textarea:focus, select:focus {border:1px solid #000;background-color:#fff;}

26 Sep 2012, 7:34 AM
#3
win8win avatar

win8win

Zen Follower

Join Date:
Apr 2012
Location:
beijing
Posts:
258
Plugin Contributions:
1

Re: Change form field background colors on contact us

maybe ,use CHrome to open your site and select the place where you wish to change and right-click to see "check element" ,then you will know where to modify,and try to change the color code,or

includes/templates/yourtemplate/css/stylesheet.css search "black" to find

26 Sep 2012, 7:25 PM
#4
rstevenson avatar

rstevenson

Totally Zenned

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

Re: Change form field background colors on contact us

If you provide a liink to your site we won't have to guess what may be the problem.

Rob

3 Oct 2012, 4:00 AM
#5
tracys avatar

tracys

New Zenner

Join Date:
Sep 2012
Posts:
4
Plugin Contributions:
0

Re: Change form field background colors on contact us

Thank you - I ended up creating the div id that shows in the code (contactUsNoticeContent ) since I couldn't find it in any of the stylesheets, and then added the below along with inputLabel as well to get the Name and Email address fields. Thanks for the help!

fjtv:

Add a div to the contact us form

<div id="contact_form"></div>

add this line to css #contact_form input:focus, textarea:focus, select:focus {border:1px solid #000;background-color:#fff;}