Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter buee86

    (@buee86)

    I would prefer to not alter the way the site is right now if possible.

    Thread Starter buee86

    (@buee86)

    So I put that in the CSS itself?

    Thread Starter buee86

    (@buee86)

    Well, I spoke too soon. Apparently, it did work to set the Send button white. However, there are 4 text fields that I have in a contact form (Contact Form 7). Name, Email, Address, and a CAPTCHA entry. Name, Email, and the CAPTCHA appear as white text when you type in the box. The address field, however, you can type and actually read what you’re typing. Weird. Any thoughts on that? The only thing I’m seeing is the Name, Email, and CAPTCHA entry are all one liners while the address text entry is numerous lines.

    Thread Starter buee86

    (@buee86)

    It’s solved. I’ve done a bunch of different things but I believe what got it was to enable the mod_rewrite and restart httpd, which I thought I had done.

    Thread Starter buee86

    (@buee86)

    It’s solved. I’ve done a bunch of different things but I believe what got it was to enable the mod_rewrite and restart httpd, which I thought I had done.

    Thread Starter buee86

    (@buee86)

    The code you posted will change all text in the element with the id of content, and all the inputs, and the textareas to have white text.

    If you add the line:
    #content input { color: #ffffff; }
    underneath it should work.
    if there is a unique id or class on that specific button you can target it directly.
    As with rev’s post, it would be
    .wpcf7-form input[type=”submit”] { color: #ffffff; }

    This worked, awesome. For the record and if someone else needs it, I’m using the third-style theme and that’s the CSS I had to edit. (…/wp-content/themes/third-style/style.css). The specific line of code is located at line 496. It’s just a couple lines below the

    /* =Content
    -------------------------------------------------------------- */

    comment

    I just added a new line of:
    #content input { color: #ffffff; }
    as suggested by jackreichert and that worked. Thanks!

    Thread Starter buee86

    (@buee86)

    Ok, I’ve found it and made the necessary changes, but it apparently puts all other text of the website in white, too. Problem there is that the background is, of course, white. Below is the code that showed up when inspected.

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

    I changed the #333333 to #FFFFFF which worked, but it changed ALL text white. The Send button is located in a dark blue button so I just need that to be white.

    Thread Starter buee86

    (@buee86)

    The site isn’t public at the moment, I have to get this fixed among a couple other things before it can go public.

Viewing 8 replies - 1 through 8 (of 8 total)