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.

Formatting disappears?

  1. anthonys
    Member

    Any idea what has happened on this page? Some of the formatting shows but some of it doesn't appear to be there at all.

    http://www.nextbank.org/contact/

    Posted 11 years ago on Sunday November 11, 2012 | Permalink
  2. What formatting is not appearing? Do you mean the textarea (paragraph) appears to be missing/not outlined? If that's what you mean, you can see in your theme's stylesheet beginning around line 208 that they are styling the textarea to remove the default styles. You can override this behavior by adding these more specific rules to your theme's stylesheet:

    [css]
    body .gform_wrapper textarea,
    body .gform_wrapper input[type="text"],
    body .gform_wrapper input[type="url"],
    body .gform_wrapper input[type="email"],
    body .gform_wrapper input[type="tel"],
    body .gform_wrapper input[type="number"],
    body .gform_wrapper input[type="password"] {
        font-size: 11px;
        border: 1px solid #000;
        padding: 5px;
        font-family: Helvetica, arial, sans-serif;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        color: #6a6a6a;
    }

    Additionally, these two stylesheet links do not work:

    http://fonts.googleapis.com/css?family=Arial,%20sans:regular,italic,bold,bolditalic
    http://fonts.googleapis.com/css?family=Arial,%20sans:regular,bold

    Posted 11 years ago on Monday November 12, 2012 | Permalink
  3. anthonys
    Member

    Thanks Chris!

    Posted 11 years ago on Tuesday November 27, 2012 | Permalink
  4. You're welcome.

    Posted 11 years ago on Tuesday November 27, 2012 | Permalink

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