<?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: CSS and Sidebar Widget</title>
		<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget</link>
		<description>Gravity Support Forums Topic: CSS and Sidebar Widget</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:31:32 +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/css-and-sidebar-widget" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "CSS and Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget#post-14269</link>
			<pubDate>Mon, 13 Dec 2010 00:03:32 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">14269@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;yep, put any custom CSS in your theme's style.css or custom.css file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ckracht on "CSS and Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget#post-14266</link>
			<pubDate>Sun, 12 Dec 2010 20:33:15 +0000</pubDate>
			<dc:creator>ckracht</dc:creator>
			<guid isPermaLink="false">14266@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;At a quick glance it looks like I might be able to use ginput_left and ginput_right to override the default css for the form. So it sounds like as you add a field you can just use the custom class within the form setup like ClearIt css code. Sorry a bit tired been flying all day and have more to go. Thanks for your help. &#60;/p&#62;
&#60;p&#62;Also, if you want to override the default settings for a particular can this be done by adding custom css in the custom.css file?&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "CSS and Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget#post-14259</link>
			<pubDate>Sun, 12 Dec 2010 13:19:38 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">14259@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can't change the markup the form outputs. The structure and classes are already set. You would just need to inspect for the class names/ID's you need to manipulate then target those via CSS and apply new rules.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ckracht on "CSS and Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget#post-14256</link>
			<pubDate>Sun, 12 Dec 2010 13:00:56 +0000</pubDate>
			<dc:creator>ckracht</dc:creator>
			<guid isPermaLink="false">14256@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I will take a look at what the links you provided and let you know. Yes if this is a guide that shows what CSS to change that would be helpful. Can some of the items just be included in the same class or div tag to keep them next to each other? Sorry flying all day in the snow so I don't have time until later to read further but wanted to say thanks for the reply.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "CSS and Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget#post-14236</link>
			<pubDate>Sat, 11 Dec 2010 17:36:19 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">14236@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm not sure what you're asking for here. Looking at the page you sent me, the form isn't a standard Gravity Form - it looks like you've pasted markup in there and tried to change it. That won't work. If you want to put a working form in your sidebar, then I could give you some guidance if you need.&#60;/p&#62;
&#60;p&#62;If you're interested in learning more about how the forms are structured, we have a visual guide that might help you out.&#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;Most fields either have a unique ID or a class that you can target with CSS rules. For the few items that don't have a class or ID applied, you can simply use CSS inheritance from the parent ID or class to style the element.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.webdesignfromscratch.com/html-css/css-inheritance-cascade/&#34; rel=&#34;nofollow&#34;&#62;http://www.webdesignfromscratch.com/html-css/css-inheritance-cascade/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.smashingmagazine.com/2010/04/07/css-specificity-and-inheritance/&#34; rel=&#34;nofollow&#34;&#62;http://www.smashingmagazine.com/2010/04/07/css-specificity-and-inheritance/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;One of the browser tools like Firebug for Firefox or the built in Safari/Chrome developer tools will make it easier to inspect the form and play around with styles on the fly. If you don't use those already, I'd give it a shot.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://getfirebug.com/&#34; rel=&#34;nofollow&#34;&#62;http://getfirebug.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://j.mp/gDFZxK&#34; rel=&#34;nofollow&#34;&#62;http://j.mp/gDFZxK&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ckracht on "CSS and Sidebar Widget"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/css-and-sidebar-widget#post-14232</link>
			<pubDate>Sat, 11 Dec 2010 15:08:06 +0000</pubDate>
			<dc:creator>ckracht</dc:creator>
			<guid isPermaLink="false">14232@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I use the Headway framework and I would like to use custom CSS for the sidebar widget. The form is simple with one required input box and a image as the submit button. I want to able to do the following:&#60;/p&#62;
&#60;p&#62;1. Customize the size of the input box and font inside&#60;br /&#62;
2. Be able to use the ClearIt css so the Enter Email Address code disappears on click&#60;br /&#62;
3. Put the image submit button to the right of the input box&#60;br /&#62;
4. Remove the * for the required field and any other Gravity form text. So a simple input box and submit button.&#60;/p&#62;
&#60;p&#62;In general I would like to learn more about CSS for these forms. So even if I have something embedded on a page I want to be able to do more CSS styling.&#60;/p&#62;
&#60;p&#62;Thanks and I look forward to your replies,&#60;br /&#62;
Chris&#60;/p&#62;
&#60;p&#62;An example of non-working code is available at &#60;a href=&#34;http://www.itcalliance.com/dev/envidagroup&#34; rel=&#34;nofollow&#34;&#62;http://www.itcalliance.com/dev/envidagroup&#60;/a&#62;&#60;br /&#62;
I tried to copy and edit code from the preview form source code and I am having issues.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
