<?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: Fancybox Modal Form CSS</title>
		<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css</link>
		<description>Gravity Support Forums Topic: Fancybox Modal Form CSS</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 01:20:52 +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/fancybox-modal-form-css" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20790</link>
			<pubDate>Thu, 17 Mar 2011 19:28:34 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">20790@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Okay, gotcha. Give this a shot.. tweak it to whatever looks good to you.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* position the main form wrapper */
body .gform_wrapper {margin-left:10px}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Anthony Luth on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20789</link>
			<pubDate>Thu, 17 Mar 2011 19:18:02 +0000</pubDate>
			<dc:creator>Anthony Luth</dc:creator>
			<guid isPermaLink="false">20789@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yeah I worded that wrong, I meant to say how do I move everything to the right some, so that with the background color, it will align properly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20779</link>
			<pubDate>Thu, 17 Mar 2011 14:47:35 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">20779@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I don't know what you're talking about moving to the right. I don't see any alignment differences in your screenshot and what I see on the live site.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/9x63&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/9x63&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Since the styles are being referenced properly and you know how to change the background color,  you should be able to use these samples to change whatever you need to on the form.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/&#34; rel=&#34;nofollow&#34;&#62;http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anthony Luth on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20769</link>
			<pubDate>Thu, 17 Mar 2011 12:07:06 +0000</pubDate>
			<dc:creator>Anthony Luth</dc:creator>
			<guid isPermaLink="false">20769@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Well I know how to do the background, but what I need to do is edit my stylesheet to move everything to the right, as seen &#60;a href=&#34;http://grab.by/9wTE&#34; rel=&#34;nofollow&#34;&#62;here&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20748</link>
			<pubDate>Thu, 17 Mar 2011 11:20:20 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">20748@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You don't need to redeclare all of the rules from the forms.css - only add new ones to modify what you need. You can replace the contents of the custom CSS file with this and it should get you rolling.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* set the body background to black */

body {background-color:#000;}

/* rounded borders for all browsers but IE */

body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -khtml-border-radius: 4px}

/* set the label colors to white */

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex .ginput_left label,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex .ginput_right label {color:#fff}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;After that, you can just add any other rules that are needed to customize the form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anthony Luth on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20746</link>
			<pubDate>Thu, 17 Mar 2011 11:03:34 +0000</pubDate>
			<dc:creator>Anthony Luth</dc:creator>
			<guid isPermaLink="false">20746@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok nevermind, that was a dumb question. Ok, now that I am calling the new css, could you help me with the styling of the form? Here is the &#60;a href=&#34;http://pastebin.com/aViqfVJN&#34; rel=&#34;nofollow&#34;&#62;pastebin&#60;/a&#62; for the new css. As you can see right now it's all to the left and overlapping the outside frame almost inside the page, I want to move it some to the right, make the country and state dropdowns next to one another.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anthony Luth on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20744</link>
			<pubDate>Thu, 17 Mar 2011 10:30:21 +0000</pubDate>
			<dc:creator>Anthony Luth</dc:creator>
			<guid isPermaLink="false">20744@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do I wanna use that instead of calling the forms.css that gravity forms uses?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20743</link>
			<pubDate>Thu, 17 Mar 2011 10:24:40 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">20743@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Understood. To begin with, you're going to need to add a path to your custom CSS file from the form template page. I would make a separate stylesheet for the modal form so it doesn't inherit other properties you don't want then reference it like this.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;link rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;http://www.politicalshortfalls.com/wp-content/themes/whitehousepro/modalform.css&#38;quot; type=&#38;quot;text/css&#38;quot; media=&#38;quot;screen&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Once that's being referenced properly, then we can properly apply the styles via the new stylesheet to get you where you want to be.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anthony Luth on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20742</link>
			<pubDate>Thu, 17 Mar 2011 10:18:55 +0000</pubDate>
			<dc:creator>Anthony Luth</dc:creator>
			<guid isPermaLink="false">20742@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Correct, I haven't put any new custom CSS for the form since even after reviewing the CSS styling tips that were posted here and also on the rocketgenius site, I couldn't get any of them to work. Right now I am trying to move the drop down fields closer to one another, make the country drop down and state drop down smaller so that I can display them next to one another, and use a more rounded out field wrapper so that it has rounded corners similar to this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://d2o0t5hpnwv4c1.cloudfront.net/687_registerForm/07.png&#34; rel=&#34;nofollow&#34;&#62;Similar Rounded Corners&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Fancybox Modal Form CSS"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fancybox-modal-form-css#post-20741</link>
			<pubDate>Thu, 17 Mar 2011 09:52:39 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">20741@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Okay. I couldn't get the register link to work last night but now I see it.&#60;/p&#62;
&#60;p&#62;Looking at the source on your iframed form page..&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.politicalshortfalls.com/editor-registration&#34; rel=&#34;nofollow&#34;&#62;http://www.politicalshortfalls.com/editor-registration&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I only see the default CSS file being loaded and not any other style sheets. I'm assuming your putting your new form styling rules in your theme stylesheet somewhere, but that's not being referenced here so your styles aren't being applied.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/9wJY&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/9wJY&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
