please see http://www.midweekmenus.com/portfolio-item/jewel/
how can i fix this styling issue?, the check boxes appear when i set the field to required.
Thank you!
please see http://www.midweekmenus.com/portfolio-item/jewel/
how can i fix this styling issue?, the check boxes appear when i set the field to required.
Thank you!
Those are not check boxes, they are your default list item markers. Please see this FAQ item: Why is my form showing up with list bullets?.
To remove them, add this to your theme's stylesheet or wherever you theme provider suggests adding custom CSS code:
[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
}
Thank you for the response however i have entered that code and it has not solved the problem. Do you have another suggestion? Thank you.
That CSS when added to your stylesheet worked for me. Right now, when I look at your site, I don't see the custom.css being output. Is there a configuration option to ensure it is output? Or, can you add the CSS to another stylesheet? It needs to be output somewhere so that it can be applied and get rid of those list markers.
I am sure that it is in the correct area as I have a lot of custom css there.
It is in a widget in the sidebar, would that change the css at all?
Also, when i check the page source i see the style that you had me add there.
Here is a screenshot of when I apply it locally: http://minus.com/lzAG24xwi5gmg
Can you post the link to the custom.css file which contains the CSS I provided from the FAQ? With the attach.php adding the stylesheets, I can't easily see the stylesheet or if the changes were made to it.
The code will work for any Gravity Form, in the sidebar widget or in the post body.
Im still working on this, going to put it directly into style.css to see if it works. Ill keep you posted