<?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: fields stretching across the whole page</title>
		<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page</link>
		<description>Gravity Support Forums Topic: fields stretching across the whole page</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 12:46:06 +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/fields-stretching-across-the-whole-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25403</link>
			<pubDate>Thu, 12 May 2011 11:20:46 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25403@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Wonderful. Thanks Chris. I'm pleased I could help out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>CG on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25402</link>
			<pubDate>Thu, 12 May 2011 11:11:10 +0000</pubDate>
			<dc:creator>CG</dc:creator>
			<guid isPermaLink="false">25402@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks again, Kevin,&#60;/p&#62;
&#60;p&#62;You are a star!&#60;/p&#62;
&#60;p&#62;I did what you said and it worked a treat! &#60;/p&#62;
&#60;p&#62;Strange thing is though, I later managed to accidently delete&#60;br /&#62;
the code you gave me  above BUT found&#60;br /&#62;
that it was working miraculously without it i.e. using the original code&#60;br /&#62;
that was apparently not cutting it and hence my last cry&#60;br /&#62;
for help.&#60;/p&#62;
&#60;p&#62;Really not sure how it worked but the fact is it does!  &#60;/p&#62;
&#60;p&#62;For anyone that might be reading this thread, and&#60;br /&#62;
possibly having similar issues, here is the final code&#60;br /&#62;
that solved all my issues above.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_1 {width:580px}
.gform_body
.gfield input[type=text] {height: 20px; width: 310px; font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #636363;}
.gfield textarea {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #636363; width: 400px;}
.gfield_label {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #8a8a8a;}
.gfield select {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #8a8a8a;} 

body #gform_wrapper_1 .gform_body .gform_fields .gfield select {border:1px solid #636363; font-size:0.9em; color:#636363; width: 315px; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Big, big thanks again to you, Kevin. I'm very pleased&#60;br /&#62;
and equally impressed at the speed and usefulness&#60;br /&#62;
of the help you are giving!&#60;/p&#62;
&#60;p&#62;Cheers&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25324</link>
			<pubDate>Wed, 11 May 2011 14:53:53 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25324@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You don't need to add extra classes to change anything, you just need to target the textarea element for the &#34;paragraph text&#34;&#60;/p&#62;
&#60;p&#62;In the previous example, I purposely omitted the textarea from the first rule because you probably didn't wan't a textarea to be defined as the same height as the other inputs. If you want to define specific properties for that, you could create a simple rule for that field.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* reset the form wrapper width */

body #gform_wrapper_1 .gform_body .gform_fields .gfield textarea {
	font-family: Arial, Helvetica, sans-serif;
        font-size: 1.1em;
        color: #8a8a8a
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If that's not working, then it's probably inheriting some other rule from your theme. If you're targeting using the example above it should be fine. I don't see a URL to your form so I can't tell you for sure.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25323</link>
			<pubDate>Wed, 11 May 2011 14:53:53 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25323@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You don't need to add extra classes to change anything, you just need to target the textarea element for the &#34;paragraph text&#34;&#60;/p&#62;
&#60;p&#62;In the previous example, I purposely omitted the textarea from the first rule because you probably didn't wan't a textarea to be defined as the same height as the other inputs. If you want to define specific properties for that, you could create a simple rule for that field.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* reset the form wrapper width */

body #gform_wrapper_1 .gform_body .gform_fields .gfield textarea {
	font-family: Arial, Helvetica, sans-serif;
        font-size: 1.1em;
        color: #8a8a8a
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If that's not working, then it's probably inheriting some other rule from your theme. If you're targeting using the example above it should be fine. I don't see a URL to your form so I can't tell you for sure.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>CG on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25305</link>
			<pubDate>Wed, 11 May 2011 12:12:36 +0000</pubDate>
			<dc:creator>CG</dc:creator>
			<guid isPermaLink="false">25305@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorry, Kevin,&#60;/p&#62;
&#60;p&#62;Just a little adjustment to my &#34;...it's all working fine.&#34; comment above.&#60;br /&#62;
Just checked something that I didn't check last night and it's not quite right.&#60;/p&#62;
&#60;p&#62;I have the following fields:&#60;/p&#62;
&#60;p&#62;1.  Name:&#60;br /&#62;
2. Email:&#60;br /&#62;
3. Phone:&#60;br /&#62;
4. Country: (single line text field)&#60;br /&#62;
5. Type your enquiry here (paragraph text field)&#60;/p&#62;
&#60;p&#62;I've managed SUCCESSFULLY to change:&#60;/p&#62;
&#60;p&#62;* the height of the input boxes&#60;br /&#62;
* the font, color and size of the text labels&#60;br /&#62;
* the font, color and size of the input text &#60;/p&#62;
&#60;p&#62;for ALL EXCEPT number 5: Type your enquiry here (paragraph text field)&#60;/p&#62;
&#60;p&#62;The only thing I was able to change was the text color... not the size or the font?&#60;br /&#62;
I just can't figure out why?  &#60;/p&#62;
&#60;p&#62;Any ideas would AGAIN be appreciated!&#60;/p&#62;
&#60;p&#62;Here is the code: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_1 {width:450px}
.gform_body .gfield input[type=text] {height: 20px; font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #636363;}
.gfield textarea {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #636363;}
.gfield_label {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #8a8a8a;}
.gfield select {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #8a8a8a;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I am correct in thinking that the problem field is .gfield textarea ?&#60;/p&#62;
&#60;p&#62;I even tried giving it a custom class name : CG-txt&#60;br /&#62;
and tried: &#60;/p&#62;
&#60;p&#62;body #gform_wrapper_1_CG-txt .gform_body .gfield textarea {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; color: #636363;}&#60;/p&#62;
&#60;p&#62;but that didn't work so I am clearly barking up the wrong tree with that one.&#60;/p&#62;
&#60;p&#62;As I say, any more of your very handy tips, Kevin, would help me sleep better tonight :)&#60;/p&#62;
&#60;p&#62;Cheers&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25198</link>
			<pubDate>Tue, 10 May 2011 12:32:18 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25198@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Not sure. I'm not familiar with that theme at all. You just want to put that at the end of whatever stylesheet gets loaded on the page. From what I see, it's the style.css file.&#60;/p&#62;
&#60;p&#62;When I add it in my test (via the firebug inspector) it works just fine.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/a5Vu&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/a5Vu&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can try adding the !important declaration, but you shouldn't need it from what I can tell.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_1 {
    width: 640px!important
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>kshaw on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25185</link>
			<pubDate>Tue, 10 May 2011 11:53:22 +0000</pubDate>
			<dc:creator>kshaw</dc:creator>
			<guid isPermaLink="false">25185@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin,&#60;/p&#62;
&#60;p&#62;i was able to fix the side by side- thank you- however after adding body #gform_wrapper_1 {width:640px) to the style.css file in the editor i get no change. i'm using flexibility 3 theme and they do have a custom css and style code section in their theme options so i tried it there also and still got no change.  any ideas? thanks again- keith
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25183</link>
			<pubDate>Tue, 10 May 2011 11:33:51 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25183@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@CG, My pleasure. Thanks for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>CG on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25182</link>
			<pubDate>Tue, 10 May 2011 11:29:49 +0000</pubDate>
			<dc:creator>CG</dc:creator>
			<guid isPermaLink="false">25182@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks very much, Kevin!&#60;/p&#62;
&#60;p&#62;Did what you said and it's all working fine!&#60;/p&#62;
&#60;p&#62;Really do appreciate it!  &#60;/p&#62;
&#60;p&#62;Cheers!&#60;/p&#62;
&#60;p&#62;Chris :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "fields stretching across the whole page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/fields-stretching-across-the-whole-page#post-25179</link>
			<pubDate>Tue, 10 May 2011 11:10:11 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25179@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would do something like this. It targets all of the normal input styles &#38;amp; selects (drop downs) so you can define a height and/or other properties. There is a separate rule that includes textareas (paragraph text) to declare the font style, color, etc.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* reset the form wrapper width */

body #gform_wrapper_1 {width:640px}

/* define the heights on the inputs and selects */

body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=email],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=tel],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=url],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=password],
body #gform_wrapper_1 .gform_body .gform_fields .gfield select {
	height:24px;
}

/* change the font color and styles for the inputs, selects and textareas */

body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=email],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=tel],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=url],
body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=password],
body #gform_wrapper_1 .gform_body .gform_fields .gfield select,
body #gform_wrapper_1 .gform_body .gform_fields .gfield textarea {
	color:#f00;
	font-family:sans-serif;
	font-style:italic
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Note: to change to a different style on fields that have been completed you'll need to add some kind of jQuery scripting to add a new class name and then define that new class in your CSS. It's not something you can do with just a CSS change itself.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
