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.

Input boxes invisible?

  1. Why are the outline of input boxes invisible on http://www.thefacebookmanual.com/newsletter/

    I don't have this problem on any other of our sites. I don't have anything in my templates CSS code that would make the outline invisible.

    WP: 2.9.1
    GF 1.3.8

    Brand new install of both.

    Posted 14 years ago on Tuesday February 2, 2010 | Permalink
  2. Just viewed that page and the CSS inspector says it's inheriting a style from your themes style.css file.

    Specifically one of the first lines in the stylesheet:

    * { margin: 0px; padding: 0px; border: 0; outline: 0; }

    That is setting EVERY element to have a border of 0. This is then being inherited by the form inputs. You will have to explicitly set a border for the form inputs using CSS so override those global style.

    Posted 14 years ago on Tuesday February 2, 2010 | Permalink