<?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: Stylesheet example,</title>
		<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example</link>
		<description>Gravity Support Forums Topic: Stylesheet example,</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 00:42:30 +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/stylesheet-example" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9761</link>
			<pubDate>Sun, 12 Sep 2010 18:56:38 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9761@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Cool Thanks. I'm happy I could help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bram on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9756</link>
			<pubDate>Sun, 12 Sep 2010 17:36:40 +0000</pubDate>
			<dc:creator>bram</dc:creator>
			<guid isPermaLink="false">9756@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;took quite some tweaking here and there, i think i got it in the right place now.&#60;/p&#62;
&#60;p&#62;one field is set per percentage, the other with pixels.&#60;/p&#62;
&#60;p&#62;couldn't get it any other way fixed the proper way.&#60;/p&#62;
&#60;p&#62;I'll make sure I mention gravity forms to others when they are looking for a good form with a+ support.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9749</link>
			<pubDate>Sun, 12 Sep 2010 14:15:42 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9749@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There is a visual CSS guide that we make available for reference.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/visual-css-guide/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/visual-css-guide/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The differences that I guess you refer to probably are just because of different containing elements and the way they are targeted in the CSS. For example, a lot of theme authors add styling like this..&#60;/p&#62;
&#60;p&#62;&#60;code&#62;input[type=text] {color:red}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and call it a day. In actuality, there are several other field types that won't inherit from this rule - tel, url, email, etc.&#60;/p&#62;
&#60;p&#62;We try to cover as much as we can with the default styles, but it's always going to vary somewhat based on what styles are inherited directly from the theme.&#60;/p&#62;
&#60;p&#62;To answer you other question, no, there's not really one &#34;simple way&#34; to create 2 columns everywhere. It depends on the types of fields that you want to break into columns, etc.&#60;/p&#62;
&#60;p&#62;Usually, you adjust the width &#38;amp; float the first containing &#38;lt;li &#38;gt; element and then every other one to create the 2 columns. You just have to get those li id's and then apply everything properly. It takes some tweaking and is generally form-specific.&#60;/p&#62;
&#60;p&#62;example from your form&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* --- reset the width of the containing list items --*/
li#field_1_6, li#field_1_4 {width:50%}

/* --- float just the left one &#38;amp; the right will float up automatically --*/
li#field_1_6 {float:left}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/grabs/778656adf67ff4af00360c42d5e9790b.png&#34; rel=&#34;nofollow&#34;&#62;screenshot&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Now, another note, you'll see that because we reduced the width on the containing list item, the input is smaller (the widths are defined in percentages) so you may have to tweak those values a bit to get them where you want them.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bram on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9746</link>
			<pubDate>Sun, 12 Sep 2010 13:52:58 +0000</pubDate>
			<dc:creator>bram</dc:creator>
			<guid isPermaLink="false">9746@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin why is it possible that the input text is different for the address fields compared to the other fields?&#60;/p&#62;
&#60;p&#62;And is there a simple way to have to columns next to each other?&#60;/p&#62;
&#60;p&#62;I did &#60;/p&#62;
&#60;p&#62;#input_1_6 {float:left; width:25%;}&#60;br /&#62;
#input_1_4 {float:right; width:25%;}&#60;/p&#62;
&#60;p&#62;but it won't have the right column next to 1_6&#60;/p&#62;
&#60;p&#62;ps: Im bookmarking all of this and make copies so that i can use it all on other forms too without having to have ask for everything in the future :P.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bram on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9741</link>
			<pubDate>Sun, 12 Sep 2010 13:11:22 +0000</pubDate>
			<dc:creator>bram</dc:creator>
			<guid isPermaLink="false">9741@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for all the help.&#60;/p&#62;
&#60;p&#62;I got everything the way i want it now and for the future i'll have a better idea how to use the code to modify the form.&#60;/p&#62;
&#60;p&#62;Maybe an idea to have these kind of codes in a document for beginners to make them more at home with CSS ?&#60;/p&#62;
&#60;p&#62;The only remainder is the language that i'd like changed with the pot file, but i mentioned this somewhere else.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9737</link>
			<pubDate>Sun, 12 Sep 2010 12:23:15 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9737@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can do this with some absolute positioning and margin tweaks. I used this to move the sub-label for the street field.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*--- move sublabel for street field --- */

#input_1_9_1_container {position:relative}
#input_1_9_1_container input {margin-top:21px; margin-bottom:8px}
#input_1_9_1_container label {position:absolute; top:0px; margin-top:0;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/grabs/267e4228df8fbe628b65142941091c73.png&#34; rel=&#34;nofollow&#34;&#62;screenshot&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bram on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9735</link>
			<pubDate>Sun, 12 Sep 2010 12:12:03 +0000</pubDate>
			<dc:creator>bram</dc:creator>
			<guid isPermaLink="false">9735@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I did that on purpose because it's confusing.&#60;/p&#62;
&#60;p&#62;All the other tags are on top of the field, and for the address section the address, zip etc are underneath it.&#60;/p&#62;
&#60;p&#62;any way of switching those round?&#60;/p&#62;
&#60;p&#62;im gonna give the code a try. I didn't include the 1 9 5 container.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9734</link>
			<pubDate>Sun, 12 Sep 2010 11:58:24 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9734@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;looks like you left the main address field label off. You should be able to add that in the admin and it will look consistent.&#60;/p&#62;
&#60;p&#62;I used this to bump the postcode field over to the right. It worked okay for me&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#input_1_9_5_container {margin-left:3px}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/grabs/19265b166f92531e6130856b6ca1f6ba.png&#34; rel=&#34;nofollow&#34;&#62;screenshot&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bram on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9730</link>
			<pubDate>Sun, 12 Sep 2010 10:05:11 +0000</pubDate>
			<dc:creator>bram</dc:creator>
			<guid isPermaLink="false">9730@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;had to do a little tweaking but i think i got that now.&#60;/p&#62;
&#60;p&#62;Is there a way to get the sub titles from the address above the fields, instead of underneath it? It looks a bit weird. The city and zip code fields looks nice with the sub titles underneath the fields, but then for the address field it looks weird because the rest doesn't look like that.&#60;/p&#62;
&#60;p&#62;I also tried to move the right ginput a bit to the right by adding a margin-left: 2px; but it didn't move.&#60;/p&#62;
&#60;p&#62;thanks again for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Stylesheet example,"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/stylesheet-example#post-9716</link>
			<pubDate>Sat, 11 Sep 2010 14:39:19 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9716@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Give this a shot.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.ginput_complex input, .ginput_complex select {font:inherit!important}
.ginput_complex label {letter-spacing:normal!important}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/grabs/74c28c6594a0b60bfb696db169e44212.png&#34; rel=&#34;nofollow&#34;&#62;test screenshot&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
