Forums / Templates, Stylesheets, Page Layout / CSS - Text Box Font Color

CSS - Text Box Font Color

Locked

Views: 9,165

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
16 Jan 2008, 03:56
#1
alexross avatar

alexross

New Zenner

Join Date:
Feb 2006
Posts:
6
Plugin Contributions:
0

CSS - Text Box Font Color

CSS question ... I have a template installed on the site https://www.ThreeSirens.com/store ... the text boxes are white and the font color is white ... problem. I just spent the past 30 minutes in the stylesheet.css (includes/templates/template_default/css/)

Any idea what line or what tag to look for?

16 Jan 2008, 09:12
#2
absolute avatar

absolute

Totally Zenned

Join Date:
May 2005
Location:
Bath, Somerset
Posts:
1,054
Plugin Contributions:
2

Re: CSS - Text Box Font Color

Quick Tip: Install FireFox - https://www.firefox.com, and then install FireBug - https://addons.mozilla.org/en-US/firefox/addon/1843

FireBug allows you to right click on any page element, and view the CSS, both direct, and inherited properties, so you can instantly see which styles you need to change.

So on your site, you would need to alter stylesheet_new.css, on line 52 to :

input:focus, select:focus, textarea:focus {
background:#F0F8FF none repeat scroll 0%;
color:#000000;
}

Good luck,

Absolute

16 Jan 2008, 09:13
#3
absolute avatar

absolute

Totally Zenned

Join Date:
May 2005
Location:
Bath, Somerset
Posts:
1,054
Plugin Contributions:
2

Re: CSS - Text Box Font Color

Also, you need to take a look at the overriding template files, rather than the template_default/css files.

The file you need to edit is : includes/templates/ZC03C00227/css/stylesheet_new.css

Absolute

17 Jan 2008, 02:15
#4
alexross avatar

alexross

New Zenner

Join Date:
Feb 2006
Posts:
6
Plugin Contributions:
0

Re: CSS - Text Box Font Color

That is a slick tool and extremely helpful!

Thank you for your helpful and fast response!

Alex