The bullets are background images being added by your theme's screen.css stylesheet on line 154:
[css]
ul li {
padding-left:15px;
background:url(../images/bullet.png) no-repeat;
background-position:0px 8px;
}
You need to override that. Please add this to your theme's stylesheet (screen.css or style.css or wherever your theme provider suggests making custom CSS changes):
[css]
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
}
This is detailed in the FAQ:
http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/
Posted 11 years ago on Tuesday January 8, 2013 |
Permalink