Hi. I've tried the css fix for bullet points in gravity forms but not having any luck. Please help.
http://www.wocc.com.au/
Cheers
Rosie
Hi. I've tried the css fix for bullet points in gravity forms but not having any luck. Please help.
http://www.wocc.com.au/
Cheers
Rosie
Try adding this to your theme's stylesheet. I'm not sure where Artisteer recommends adding your custom CSS, but this needs to go there. This will remove the hand image from before the field name:
[css]
.gform_body .art-postcontent ul>li:before, .art-post ul>li:before, .art-textblock ul>li:before {
content: '';
}
Thanks Chris. But then I lose the hand throughout the site.
Cheers
Sorry, I skipped the .gform_body on the second and 3rd selector. Try this please:
[css]
.gform_body .art-postcontent ul>li:before,
.gform_body .art-post ul>li:before,
.gform_body .art-textblock ul>li:before {
content: '';
}
Hello, I have placed this code in my artisteer generated theme in the CSS section at the bottom, and still come up with bullets for each form field.
Here is a sample:
http://www.listingsup.com/get-started/
This should do the trick for you:
[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
}
Yeah! Thank you! Beautiful!
No problem, glad to help!