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.

Where did the asterisks come from?

  1. I'm a rookie at this so please forgive my ignorance. I'm not sure how these asterisks appeared in some of my forms and MintThemes support determined it was a gravity forms problem. Can I get a little help with this? It looks bad.

    http://custombucketseats.com/2012/06/rotating-bucket-seat/

    http://custombucketseats.com/2012/06/text-options/

    http://custombucketseats.com/2012/06/customization-font/

    http://custombucketseats.com/2012/06/customization-thread-color/

    Thanks.

    Jason

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  2. David Peralty

    Actually, it is your theme that is adding the bullets to the list items of Gravity Forms.

    In your style.css can you add the following:

    .info-block ul li {
    list-style-image: none !important;
    list-style-type: none !important;
    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  3. Sorry to sound ignorant but do I just copy and paste this in the css style box in theme options?

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  4. David Peralty

    Nope. It goes in your Style.css file.
    http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  5. I'll give it a shot. Thanks. This language is like Greek to me and I appreciate the translation help. Fingers crossed that I do it right. I'm guessing I add one of those <script things at the front but I'm not sure if I need one at the end.

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  6. David Peralty

    You will want to go to Appearance -> Editor
    Click style.css
    Go to the bottom
    Paste the code I gave you
    Save it
    Check your form.

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  7. *fist bump* Thanks. You da man.

    Posted 11 years ago on Thursday June 28, 2012 | Permalink
  8. David Peralty

    You might also need:

    .info-block ul {
    list-style-image: none !important;
    list-style-type: none !important;
    }

    Looks like the theme developers really wanted you to have bullets in every single list on your page.

    Posted 11 years ago on Thursday June 28, 2012 | Permalink