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.

// Coming up in gravity form

  1. Hi,

    I have just created a new gravity form and in between each section it has these symbols // coming up.

    The website where this is occurring is

    http://hairdresser.oxygenwebsolutions.com.au/make-a-booking/

    Any ideas on how I can fix the problem?

    Thanks Kindly

    Jaimee Maree

    Posted 13 years ago on Thursday March 29, 2012 | Permalink
  2. In your theme's stylesheet this is what is causing that:

    [css]
    ul li::before {
    content: "// 0020";
    }

    If you want to keep that style for other list items and only want to remove it from Gravity Form list items then drop this into your theme's stylesheet:

    [css]
    .gform_wrapper li::before, .gform_wrapper form li::before {
    content: '';
    }
    Posted 13 years ago on Thursday March 29, 2012 | Permalink