PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Name and Email Fields Not Showing

  1. akasocrates
    Member

    Hi there--

    These forms used to work fine. But after the recent WP updates, some field boxes aren't showing any more. Here's a link to the page: http://realworldsupplychain.com/contact/

    Would appreciate your help. Thanks in advance.

    Posted 13 years ago on Saturday May 5, 2012 | Permalink
  2. This style declaration in your theme's stylesheet is the cause (no border and no background):

    [css]
    .custom div.format_text form input {
    width: auto;
    background: none;
    border: none;
    }

    Try dropping this into your theme's stylesheet (and you can set the hex colors to whatever you'd like):

    [css]
    .gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"] {
    background: #EEE !important;
    border: 1px solid #CCC !important;
    }
    Posted 13 years ago on Sunday May 6, 2012 | Permalink
  3. akasocrates
    Member

    Thanks Rob. That worked great on the borders.

    Any chance, you can help me further with the "submit" button. The only thing that shows right now is the word without the button itself.

    Here's the link again: http://realworldsupplychain.com/contact/

    Thanks in advance! Much appreciated.

    Posted 13 years ago on Thursday May 10, 2012 | Permalink
  4. Sure thing, try this snippet out in your theme's stylesheet, which targets the submit button:

    [css]
    .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"] {
    background: #EEE;
    border: 1px solid #CCC;
    cursor: pointer;
    }
    Posted 13 years ago on Thursday May 10, 2012 | Permalink
  5. akasocrates
    Member

    Perfect! That worked great.

    Thanks Rob!

    Posted 13 years ago on Thursday May 10, 2012 | Permalink
  6. Awesome, glad to help out!

    Posted 13 years ago on Thursday May 10, 2012 | Permalink

This topic has been resolved and has been closed to new replies.