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.

text form boxes not showing

  1. Hi,
    I just installed Graviy Forms. The problem I am having is the page does not show the text box border for the client to type into.
    http://www.ziruxgaming.com/wordpress/sponsorships/
    This is the page. Any suggestions?

    Posted 12 years ago on Monday October 3, 2011 | Permalink
  2. Yep, your theme is doing it. Look at the common.css file in your theme ( line 20 ) and you'll see this..

    [css]
    * {
        background-attachment: scroll;
        background-repeat: no-repeat;
        border: 0 none;
        font-family: inherit;
        font-size: 100%;
        font-style: inherit;
        font-weight: inherit;
        margin: 0;
        padding: 0;
        vertical-align: baseline;
    }

    If you notice, the "border: 0 none;" being applied as a wildcard to every element on the page.. that means your form inputs as well. The problem is they threw that in there, but never re-defined the borders for the elements that are supposed to actually have them.

    My suggestion would be to remove the border property from that rule. That will take care of your form problem, and probably others you'll encounter down the road with a blanket rule like that.

    screenshot: http://bit.ly/riJmIW

    Posted 12 years ago on Tuesday October 4, 2011 | Permalink
  3. Hi Kevin,
    That did it.
    Thank you very much for responding with the answer I needed.

    Posted 12 years ago on Tuesday October 4, 2011 | Permalink
  4. Kris, it's my pleasure. I'm happy I could help out. If you need anything else, please don't hesitate to ask.

    Posted 12 years ago on Tuesday October 4, 2011 | Permalink

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