On my form I have this ">" next to every entry (Check box, Field, etc) why? & How do I make them go away.
Here is the page.
http://highplainsweb.com/clients/love2shop/?page_id=38
Thx
Shawn
On my form I have this ">" next to every entry (Check box, Field, etc) why? & How do I make them go away.
Here is the page.
http://highplainsweb.com/clients/love2shop/?page_id=38
Thx
Shawn
your theme stylesheet is adding an image background to all of your list items and your form is inheriting it. It's a theme issue and not something with your form.
Your style.css file line 2148 has this
[css]
.postcontent ul > li:before, .post ul > li:before, .textblock ul > li:before {
bottom: 2px;
content: url("images/postbullets.png");
display: inline-block;
font-size: 0;
line-height: 0;
margin-right: 6px;
position: relative;
vertical-align: middle;
}
You can try this fix to see it it corrects the issue for you.
http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/
That is because Gravity Forms form fields are list items, and your theme has included a background image for the list bullets. See line 2148 in http://highplainsweb.com/clients/love2shop/wp-content/themes/Love2Shopv4/style.css
[css]
.postcontent ul > li:before, .post ul > li:before, .textblock ul > li:before {
bottom: 2px;
content: url("images/postbullets.png");
display: inline-block;
font-size: 0;
line-height: 0;
margin-right: 6px;
position: relative;
vertical-align: middle;
}
See this FAQ item:
http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/
You can override that by adding this to the bottom of your theme's stylesheet, or wherever your them provider suggests making custom CSS changes:
[css]
body .gform_wrapper form .gform_body ul li:before {
content: none;
}
That took care of it for me. Screenshot: http://minus.com/lbqxAyevNK6wvD
Damn that Kevin! :-)
Thank you :)