<?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: Form CSS Issue?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-css-issue</link>
		<description>Gravity Support Forums Topic: Form CSS Issue?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 16:06:14 +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/form-css-issue" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Form CSS Issue?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-css-issue#post-74673</link>
			<pubDate>Mon, 10 Sep 2012 12:16:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">74673@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for the update.  Glad that worked for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chatfielda on "Form CSS Issue?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-css-issue#post-74671</link>
			<pubDate>Mon, 10 Sep 2012 12:12:10 +0000</pubDate>
			<dc:creator>chatfielda</dc:creator>
			<guid isPermaLink="false">74671@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Dude, you are awesome - that fixed it perfectly. I was nowhere near finding all of the conflicts. Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form CSS Issue?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-css-issue#post-74454</link>
			<pubDate>Sat, 08 Sep 2012 10:03:23 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">74454@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Most of your issue is coming from the label rule on line 202 of your style.css file.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
label {
    background: url(&#38;quot;images/dash.png&#38;quot;) repeat-x scroll left bottom transparent;
    color: #252525;
    cursor: pointer;
    display: block;
    float: left;
    line-height: 18px;
    margin: 6px 16px 0 0;
    padding: 0 2px 5px;
    text-align: right;
    width: 120px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, the custom rule on line 332&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_wrapper .top_label .gfield_label {
    display: block;
    float: left;
    margin: 5px 0 4px !important;
    padding-right: 20px;
    width: 100px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That's adding the dashes that you see and is overriding the default &#34;top label&#34; form settings. It's also forcing the weird label width. You should be able to remove those blocks from your CSS and see an immediate improvement in your form layout.&#60;/p&#62;
&#60;p&#62;Line 652 adds the bullet &#34;arrow&#34; image that you see.. if you remove or override that then you can get rid of the bullet&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.entry ul li {
    background: url(&#38;quot;images/menu-bullet-right.png&#38;quot;) no-repeat scroll left 7px transparent;
    list-style: none outside none;
    margin: 0;
    padding: 0 0 0 14px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you don't want to remove it, adding this to the end of your theme stylesheet should override it.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.entry .gform_wrapper ul li {
    background: none!important;
    background-image: none!important;
    padding-left: 0!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;lastly, removing the rule applied to the span on line 655 will get rid of the last dashes (background image) being applied.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.entry ul li span {
    background: url(&#38;quot;images/dash.png&#38;quot;) repeat-x scroll left bottom transparent;
    display: block;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;test screenshot: &#60;a href=&#34;http://bit.ly/PbJUzh&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/PbJUzh&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Good luck with it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chatfielda on "Form CSS Issue?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-css-issue#post-74401</link>
			<pubDate>Fri, 07 Sep 2012 15:06:04 +0000</pubDate>
			<dc:creator>chatfielda</dc:creator>
			<guid isPermaLink="false">74401@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am using Re-Brand, a theme from otwthemes.com sold on ThemeForest and my forms are being put out with some funny CSS quirks - mostly the dotted lines and the list arrows to the left:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://greatleapstudios.com/test/content-package-order/&#34; rel=&#34;nofollow&#34;&#62;http://greatleapstudios.com/test/content-package-order/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any thoughts on why this is happening and the best way to fix it?&#60;/p&#62;
&#60;p&#62;Here is the CSS for the theme:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://greatleapstudios.com/test/wp-content/themes/rebrand/style.css&#34; rel=&#34;nofollow&#34;&#62;http://greatleapstudios.com/test/wp-content/themes/rebrand/style.css&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any help is much appreciated :)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
