I believe I have done this before but forgot how to target.. Does anyone know the css code to get rid of the arrows on this page? Do i just enter it on the themes style sheet.. Thanks
I believe I have done this before but forgot how to target.. Does anyone know the css code to get rid of the arrows on this page? Do i just enter it on the themes style sheet.. Thanks
http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/
Yes you just add the styles to the end of your theme's style.css. Without a link to your form I can't give you the specific code or make sure it works, but the code in the FAQ should be pretty close.
here is the page.. thank you https://fanpage4me.com/scottheliker/contact/#
Did you try that code from the FAQ page? It worked for me.
[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
}
You need to remove the background image for the list items. The code in the FAQ takes care of it.
Awesome, thank you for being so prompt Chris :)
No problem.