The "dot" is actually coming from this:
[css]
.widget_nav_menu li::before, .widget_links li::before, .widget_meta li::before, .entry-content ul li::before {
content: 'ยท00b7';
color: #545454;
font-size: 46px;
position: absolute;
top: 7px;
left: 4px;
font-family: "Times New Roman", sans-serif;
}
Try using this:
[css]
body .gform_wrapper form .gform_body ul > li::before {
content: "";
}
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;
}
Screenshot of Result
Posted 11 years ago on Monday January 21, 2013 |
Permalink