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.

Help with CSS for my Gravity Form...

  1. mgeyman
    Member

    Please Help!!

    I'm not able to get the Text to appear within the form. What needs to be done? I'm new with CSS. The form is located at http://www.maryrileycasaforjudge.com/dev/volunteer/

    Thank you very much.

    Posted 14 years ago on Tuesday March 1, 2011 | Permalink
  2. It appears your theme isn't enqueuing the necessary CSS and Javascript which is why the form doesn't appear properly.

    How are you displaying the form? Are you using the shortcode in a post or are you displaying the form using the function call?

    Also make sure have the Output CSS option on the Settings page set to Yes.

    Posted 14 years ago on Tuesday March 1, 2011 | Permalink
  3. mgeyman
    Member

    Thanks for your super-quick response!

    I set the Output CSS option to "Yes."

    THe theme I'm using is the Anchor Child from iThemes along with Builder. I'm using shortcode - [gravityform id=2 name=VolunteerForm title=false description=false ajax=true]

    Posted 14 years ago on Tuesday March 1, 2011 | Permalink
  4. mgeyman
    Member

    OK. I figured it out. In my Theme's style.css file, I just needed to comment out the following:

    label {
    font-weight: bold;
    <!--color: #FFFFFF;-->

    Posted 14 years ago on Tuesday March 1, 2011 | Permalink
  5. If you're going to comment something in your CSS file, the comment syntax is different than HTML. The example you have above is incorrect.

    This is the proper way to comment CSS

    label {
    font-weight:bold;
    /* color:#fff */
    }
    Posted 14 years ago on Tuesday March 1, 2011 | Permalink
  6. mgeyman
    Member

    Thanks Kevin.

    Posted 14 years ago on Thursday March 3, 2011 | Permalink