<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: styling checkboxes</title>
		<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes</link>
		<description>Gravity Support Forums Topic: styling checkboxes</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 13:14:08 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/styling-checkboxes" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-33149</link>
			<pubDate>Sun, 21 Aug 2011 14:53:22 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">33149@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sure, your theme has a contact form that looks nice and the CSS for that form would have to be included, that's not what I was saying. I'm saying that the way the CSS was written was very specific to that one form but was written in a way that ANY form on the site would inherit from that. &#60;/p&#62;
&#60;p&#62;There are some CSS/styling specific resources available in the documentation. You can have &#34;total control&#34; over the look of the forms by targeting the elements and styling them with your own CSS.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/resources/cssguide/css_guide.html&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/resources/cssguide/css_guide.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Gravity Forms isn't &#34;totally reliant&#34; on the theme styles. That's incorrect. Take a look at the form preview page. The forms have nice, basic formatting and function perfectly there without any styles included from the theme.&#60;/p&#62;
&#60;p&#62;There is no WordPress-specific ideology at work in the styling or formatting. The fact is that the forms become part of the page (as opposed to framed in like Wufoo, etc) so they're going to inherit styles from the parent theme just like any other elements in the page. The forms are actually designed to inherit styles from the parent so they can blend in with the rest of the theme without a lot of effort.&#60;/p&#62;
&#60;p&#62;There's no bulletproof way to create &#34;theme independent pre-set CSS layouts&#34; that won't inherit properties from the parent. We are planning on offering some type of theming/advanced styling  add-on in the future to make it a bit easier though for folks with limited CSS skils.&#60;/p&#62;
&#60;p&#62;In the mean time, we'll still be happy to help you if you have styling issues that you can't resolve.&#60;/p&#62;
&#60;p&#62;Lastly, we have a full working demo of the plugin available so there's no reason to be surprised by the functionality or any limitations of the plugin after your purchase. You could have tried that out, asked us questions pre-sale, etc. We do our best to educate folks pre-sale if they want to take advantage of those resources.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kbsamurai on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-33146</link>
			<pubDate>Sun, 21 Aug 2011 13:41:13 +0000</pubDate>
			<dc:creator>kbsamurai</dc:creator>
			<guid isPermaLink="false">33146@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks very much.  That helps.  The style (based on twenty-ten by the way) does some unusual things but whether it sucks or not is kinda of beside the point.  To me the idea that Gravity Forms is so totally reliant on inherit styles from the theme is the issue.  The theme has a build in contact form so the fact that the theme has form-specific styles isn't surprising nor to blame the author.  It includes a nice basic easy to use contact form.  However in this case I want to make some more compact complex forms and the reason to go to gravity forms rather than CF7 is the promise that could make the more complex forms the way I want rather than working on the theme the way CF7 would require, but what you are telling me is Gravity Forms has the same problem as CF7, one has to spend time getting very familiar with CSS of the plugin.  It would be really nice, it somewhere there was an explanation of totally control the look and feel of the form but I haven't been able to find it. Just seems to be tid bits here and there.  Why not provide theme independent pre-set CSS layouts ?   Or is that some WordPress ideology that everything should be inherited from the style.  I didn't buy Gravity Forms because I wanted to stick to the theme style.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-33122</link>
			<pubDate>Sat, 20 Aug 2011 20:11:08 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">33122@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So, this should get you closer. It hacks around the poor form styles in your theme and should override those for your Gravity Forms. Add these to the end of your theme stylesheet.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#content .gform_wrapper li {
    margin-left: 0;
}

body .gform_wrapper ul,
body .gform_wrapper li {
	max-width:1000px!important
}

#content .gform_wrapper input[type=checkbox],
#content .gform_wrapper input[type=radio],
#content .gform_wrapper input[type=submit],
#content .gform_wrapper input[type=button] {
    width: auto!important;
}

#content .gform_wrapper input,
#content .gform_wrapper textarea {
	margin-right:0!important
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/o6Aqtc&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/o6Aqtc&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can tweak everything from there until you like it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-33120</link>
			<pubDate>Sat, 20 Aug 2011 19:44:34 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">33120@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@kbsamauri, The problem here is that your theme styles suck. It's not a Gravity Forms issue, they're made to inherit styles from the theme. If the theme has crappy styling, well, you get the picture.&#60;/p&#62;
&#60;p&#62;I'll take a look and see what kind of solution I can offer.. there's a lot wrong in your theme styles, so you may need to talk to your theme provider about removing the form-specific styles from the theme itself.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kbsamurai on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-33119</link>
			<pubDate>Sat, 20 Aug 2011 19:28:08 +0000</pubDate>
			<dc:creator>kbsamurai</dc:creator>
			<guid isPermaLink="false">33119@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Just got this form builder and i thought it would make life easier than Contact Form 7,  but it hasn't.  Everything looks just as awful as in CF7 and now I'm down in the CSS code trying to get it do anything, something different.  What's the point if you have spend as much time making a form nice looking as you would if you wrote the CSS and PHP yourself ?&#60;/p&#62;
&#60;p&#62;I've spent a lot of time just trying to get the 3 check boxes on one line and everything fails. It all stays in one single over padded column.  Neither &#34;gf_list_inline&#34; or &#34;gf_list_3col&#34; ready classes work.  Can some one point me to some thing about making these forms as compact as if I hard coded it, because right now this looks like a waste of time and money. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://petpals.localonlinemarketingsolutionshosting.com/book-us/&#34; rel=&#34;nofollow&#34;&#62;http://petpals.localonlinemarketingsolutionshosting.com/book-us/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-25887</link>
			<pubDate>Thu, 19 May 2011 00:23:37 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25887@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I think it's fine. I personally would just use the &#34;gf_list_inline&#34; ready class and remove the other styles. The class is already in the default stylesheet and does pretty much the same thing without having to add even more styles to your theme stylesheet. It's totally up to you of course. In the end, whatever works is a great solution.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jcglover1237 on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-25885</link>
			<pubDate>Wed, 18 May 2011 23:42:09 +0000</pubDate>
			<dc:creator>jcglover1237</dc:creator>
			<guid isPermaLink="false">25885@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey, thanks for getting back to me this late in the day.  Here is the site: &#60;a href=&#34;http://albanymortgageinfo.com&#34; rel=&#34;nofollow&#34;&#62;http://albanymortgageinfo.com&#60;/a&#62;.  I think I got it figured out but I didn't use the ready class you just suggested.  I went into view source and played around.  It's the form on the home page.  Let me know what you think.  Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-25884</link>
			<pubDate>Wed, 18 May 2011 23:24:21 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25884@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm not going to be able to really help you without seeing your form. Can you post a URL to your form page please?&#60;/p&#62;
&#60;p&#62;Have you already tried the &#34;gf_list_inline&#34; or &#34;gf_list_3col&#34; ready class?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jcglover1237 on "styling checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-checkboxes#post-25883</link>
			<pubDate>Wed, 18 May 2011 22:58:59 +0000</pubDate>
			<dc:creator>jcglover1237</dc:creator>
			<guid isPermaLink="false">25883@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've looked at the documentation and I'm just not getting it.  I've used view source and was able to manipulate the styling a bit but not exactly.  I have three check boxes and I want them to run horizontal to each other, and I want there to be some more spacing between each input.  Plus, I'd like the checkbox to be even with the text.  Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
