Title: Text Area Background Issues
Last modified: August 31, 2016

---

# Text Area Background Issues

 *  [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/)
 * Hi I’m using firmness pro theme and I need to change text area backgrounds (I
   think thats what they are called….help!) or CSS Style colours to assist with 
   an ongoing text area background issue (it also effects some buttons). Every time
   I download a plugin I have the same issues. My site is a dark grey site with 
   white font so backgrounds that are light don’t work. I think I need to send screen
   shots to show the real extent of the issue.
 * My website is [http://www.ssifm.com](http://www.ssifm.com) and to show the issue
   go to:
 * [http://www.ssifm.com/fm-jobs/job-submission-form/?preview_id=3399&preview_nonce=501b230d45&preview=true](http://www.ssifm.com/fm-jobs/job-submission-form/?preview_id=3399&preview_nonce=501b230d45&preview=true)
 * Any help would be massivley appreciated here as its been going on for ages and
   any of the changes Ive made to the CSS style has not helped, albeit I could have
   changed the wrong thing!
 * HELP!

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/text-area-background-issues/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/text-area-background-issues/page/2/?output_format=md)

 *  [Mr Case](https://wordpress.org/support/users/mr-case/)
 * (@mr-case)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076557)
 * That link doesn’t allow for us to see your form. it says we have to be logged
   in.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076569)
 * aha I will change this now quickly sorry.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076573)
 * Should be ok to view now
 *  [Mr Case](https://wordpress.org/support/users/mr-case/)
 * (@mr-case)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076584)
 * still nothing. if you got to that link from a private, or incognito window you
   will see what I see.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076595)
 * [http://www.ssifm.com/fm-jobs/job-submission-form/](http://www.ssifm.com/fm-jobs/job-submission-form/)
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076596)
 * there you go its because I did it through a preview window doh!
 *  [Mr Case](https://wordpress.org/support/users/mr-case/)
 * (@mr-case)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076693)
 * there must be a setting you are not using or something…I still have zero access
   to the form.
 * see here:
    [http://i65.tinypic.com/9gc7li.jpg](http://i65.tinypic.com/9gc7li.jpg)
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076713)
 * Yep you are right it was some settings got there in the end I’ve tried it with
   me logged out and I have access, I can change it back once we have identified
   what I need to do next to change the colouring.
 * Again thank you for any help on this.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076714)
 * [http://www.ssifm.com/fm-jobs/job-submission-form/](http://www.ssifm.com/fm-jobs/job-submission-form/)
 *  [Mr Case](https://wordpress.org/support/users/mr-case/)
 * (@mr-case)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076725)
 * whatever you did fixed it.
 * here is some css you can tweak to your liking. there were 4 elements that needed
   to be changed. just place it in your custom css or child theme’s ‘style.css’ 
   file
 *     ```
       .frontend-forms {
           background: #333;
       }
   
       .frontend-forms ul.tab-nav li.active {
           background: #666;
       }
   
       .frontend-forms ul.box li.tab-box {
           background: #666;
       }
   
       .frontend-forms input[type="submit"] {
           color: #333;
       }
       ```
   
 * a really handy tool is google chrome’s inspect tool, or firefoxs firebug. they
   both allow you to look at the elements in the DOM and change them without actually
   affecting your site.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076736)
 * great will this work with all my plugins or just the page that you saw? as I 
   also have this issue here:
 * [http://www.ssifm.com/fm-jobs/client-job-list/](http://www.ssifm.com/fm-jobs/client-job-list/)
 * font is darker on this one.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076737)
 * great will this work with all my plugins or just the page that you saw? so if
   I change in the DOM it will change on my site and will effect it each time people
   go to view? if so this is great news thank you.
 *  [Mr Case](https://wordpress.org/support/users/mr-case/)
 * (@mr-case)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076758)
 * the inspect feature changes the view locally, just for you, and temporarily, 
   just while you are viewing those pages. It allows developers to troubleshoot 
   functionality and design without changing the code.
 * The css i provided you should give you the results you want for the form. and
   you can change those hexidecimal color values to whatever you like. I just used
   two variations of grey.
 *  Thread Starter [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * (@balmfoc)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076760)
 * The variations you chose work great thank you. Massive help much appreciated.
 * Unfortunately I have an alignment issue now as seen here:
 * [http://www.ssifm.com/job/project-manager/](http://www.ssifm.com/job/project-manager/)
 * massive thank you for your help.
 *  [Mr Case](https://wordpress.org/support/users/mr-case/)
 * (@mr-case)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/#post-7076762)
 * on your other pages you have all the content in a div with an id of ‘main’
 * on that page you have issues with there is no div with an id of ‘main’
 * are you using a different page template on that page?

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/text-area-background-issues/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/text-area-background-issues/page/2/?output_format=md)

The topic ‘Text Area Background Issues’ is closed to new replies.

## Tags

 * [background](https://wordpress.org/support/topic-tag/background/)

 * 16 replies
 * 2 participants
 * Last reply from: [balmfoc](https://wordpress.org/support/users/balmfoc/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/text-area-background-issues/page/2/#post-7076764)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
