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.

Fields are using list tags?

  1. chrisat
    Member

    Hello,

    so far I could see is the form using UL and LI tags, which causes showing up list symbols. How do I prevent this? Is there a way to have it shown different?

    Thanks for any help, Chris

    Posted 11 years ago on Monday December 10, 2012 | Permalink
  2. Richard Vav
    Administrator

    Try adding the following css to your themes style.css file if that doesn't work can you post a link to the page with the form on

    body .gform_wrapper form .gform_body ul,
    body .gform_wrapper form .gform_body ul li {
    	list-style-type: none !important;
    	list-style-image: none !important;
    	list-style: none !important;
    	background-image: none !important;
    	background: none !important;
    	padding: 0 !important;
    	margin: 0 !important;
    	border: none !important
    }
    Posted 11 years ago on Monday December 10, 2012 | Permalink
  3. chrisat
    Member

    Hello,

    thank you for your help - but it doesnt work...
    Margin is back to zero now, but the arrows are still there...

    http://www.emobility-graz.at/?page_id=1204&preview=true

    Best regards,
    Chris

    Posted 11 years ago on Monday December 10, 2012 | Permalink
  4. David Peralty

    Hi there, we can't see preview pages. You have to publish them for us to see them and send an updated link. That way we can find out how those bullets are being added.

    Posted 11 years ago on Monday December 10, 2012 | Permalink
  5. Richard Vav
    Administrator

    David beat me to it

    Posted 11 years ago on Monday December 10, 2012 | Permalink
  6. chrisat
    Member

    Hello,

    here it is:
    http://www.emobility-graz.at/a-test-3/

    Best regards,
    Chris

    Posted 11 years ago on Tuesday December 11, 2012 | Permalink
  7. David Peralty

    So for your theme, you'll need to find this style, probably in your header.php file and remove it:

    .about-cont::after, ul li::after {
    border-left: solid 3px #9DDF11 !important;
    Posted 11 years ago on Tuesday December 11, 2012 | Permalink
  8. Or (to make sure it only happens on Gravity Forms forms and not all lists) add this below that CSS (or try it with adding it to the end of your stylesheet):

    .gform_wrapper ul li::after {
        border-left: 0 !important;
    }
    Posted 11 years ago on Tuesday December 11, 2012 | Permalink
  9. David Peralty

    Hiranthi, I don't know if you'll be able to override an !important call with an important call, though if he removes the !important call from the first rule, yours should work well too.

    Posted 11 years ago on Tuesday December 11, 2012 | Permalink