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.

Theme Bullet Points showing up in Gravity Form

  1. How do I correct the issue of my themes bullet points showing up in the forms I have been creating. So far I have created 4 forms and they all show the bullet points. Below are the pages where my forms are embedded:

    http://209.59.218.91/~texaspg/registration/
    http://209.59.218.91/~texaspg/donations/
    http://209.59.218.91/~texaspg/waiver-form/
    http://209.59.218.91/~texaspg/contact-us/

    Posted 11 years ago on Thursday January 10, 2013 | Permalink
  2. David Peralty

    You would need to add the following in your theme's CSS:

    .art-postcontent ul > li::before, .art-post ul > li::before, .art-textblock ul > li::before {
    content: none !important;
    Posted 11 years ago on Thursday January 10, 2013 | Permalink
  3. By adding this, my theme will still be able use the bullet points withing the post, just not the forms?

    Posted 11 years ago on Thursday January 10, 2013 | Permalink
  4. David Peralty

    This would remove the bullets from every ordered list matching the criteria. If you used a rule that was Gravity Forms specific, I don't think it woud override the bullets from being shown.

    You could try:

    .art-postcontent .gform_body ul > li::before, .art-post .gform_body ul > li::before, .art-textblock .gform_body ul > li::before {
    content: none !important;
    }
    Posted 11 years ago on Thursday January 10, 2013 | Permalink
  5. Hmm. Yep your right. the gravity specific did not work. That sure made the form more clean. Surely there is a way to make there work right? For now, I can just add a bullet if needed but it would be nice to be able to exclude from the form yet keep the theme bullets active int he post content. Thanks

    Posted 11 years ago on Thursday January 10, 2013 | Permalink