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.

changing form text / css

  1. I tried to change the text in my forms with your css but it didn't work.
    I added this below to my style sheet, and created 2 forms id 1 and id 2. The only time anything changes is if I don't use the ID but then both change and I need 2 diff forms. Please help.

    http://abcdesignandbuild.com/files/?page_id=4

    [css]/* Gravity Forms
    ------------------------------------------------------------ */
    
    body .gform_wrapper_1 .gform_body {
                     color: #fff
    }
    
    body .gform_wrapper_2 .gform_body {
                     color: #000
    }
    Posted 13 years ago on Sunday February 26, 2012 | Permalink
  2. I think you mean to have:

    [css]
    /* Gravity Forms
    ------------------------------------------------------------ */
    
    body #gform_wrapper_1 .gform_body {
    color: #fff
    }
    
    body #gform_wrapper_2 .gform_body {
    color: #000
    }

    Each form creates a unique ID, as in id="gform_wrapper_1" so you'd target that via CSS as an ID (#) not a class (.)

    Posted 13 years ago on Sunday February 26, 2012 | Permalink