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.

Bullet issue

  1. deunji
    Member

    Hi,
    I have an issue with bullets on the form.
    Please check this page out ;
    http://www.svks.org/home/online-registration.html

    I put the code on http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/
    But it still shows bullets. Please let me know what to do.

    Posted 11 years ago on Saturday September 1, 2012 | Permalink
  2. deunji
    Member

    Can anyone help me out?

    Posted 11 years ago on Sunday September 2, 2012 | Permalink
  3. You caught us on a holiday weekend. Sorry for the delay.

    Seems there is no end to the number of ways people can add a bullet to a list item. This rule is currently in your skin.css:

    [css]
    .widget_nav_menu li:before, .widget_links li:before, .widget_meta li:before, .entry-content ul li:before { content: '\ 0 0 b 7'; color: #545454;font-size: 46px; position: absolute; top: 7px; left: 4px; font-family: "Times New Roman", sans-serif; }

    To override that, please add this to the rules you have already added to style.css:

    [css]
    body .gform_wrapper form .gform_body ul li:before {
        content: none;
    }
    Posted 11 years ago on Monday September 3, 2012 | Permalink