• I have a black background on my theme and when I created my contact form the instructional text is black so you can’t see what the names of the fields are that you are filling in when you fill out the form.

    How can I fix this?

    Also my php files are the only ones listed as active. All css files are listed as inactive. Why is this?

    I’m new to wordpress and still learning. Any help would be appreciated.

    Thanks

    Misty

Viewing 2 replies - 16 through 17 (of 17 total)
  • No problem. I can heartily recommend using Firefox with the Firebug add-on for this kind of work.

    Thanks Esmi! For all beginners like myself using twenty ten:

    Find this section on your main CSS sheet and change the colour of the textarea. Everyone’s happy.

    #content,
    #content input,
    #content textarea {
    	color: #FFF;
    	font-size: 16px;
    	line-height: 24px;
    }

    to

    #content,
    #content input,
    #content textarea {
    	color: #000;
    	font-size: 16px;
    	line-height: 24px;
    }
Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘[Plugin: Contact Form 7] changing the font color for the form field names’ is closed to new replies.