<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Change style of your WordPress Contact page</title>
	<atom:link href="http://hecode.com/change-style-of-your-wp-contact-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://hecode.com/change-style-of-your-wp-contact-page/</link>
	<description>WordPress Professional Solutions - Wishlist Member advanced -  – SEO Consulting Services - Plugins and WP Theme</description>
	<lastBuildDate>Tue, 20 Mar 2012 15:02:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Juliana</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-875</link>
		<dc:creator>Juliana</dc:creator>
		<pubDate>Tue, 02 Aug 2011 03:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-875</guid>
		<description>THANKS SOOOO MUCH! YOU ARE AWESOME.. You saved me one extra day of work!!!!</description>
		<content:encoded><![CDATA[<p>THANKS SOOOO MUCH! YOU ARE AWESOME.. You saved me one extra day of work!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravi</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-839</link>
		<dc:creator>ravi</dc:creator>
		<pubDate>Wed, 27 Jul 2011 06:33:53 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-839</guid>
		<description>This really helped me out...thank you for this one...i was looking for such help...</description>
		<content:encoded><![CDATA[<p>This really helped me out&#8230;thank you for this one&#8230;i was looking for such help&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MundoCaco</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-826</link>
		<dc:creator>MundoCaco</dc:creator>
		<pubDate>Mon, 25 Jul 2011 13:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-826</guid>
		<description>Thanks! last night a good code sabe my life! ;)</description>
		<content:encoded><![CDATA[<p>Thanks! last night a good code sabe my life! <img src='http://hecode.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Annamarie</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-688</link>
		<dc:creator>Annamarie</dc:creator>
		<pubDate>Tue, 22 Mar 2011 23:34:54 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-688</guid>
		<description>IT may not have helped her, but it sure helped me. Thank you.</description>
		<content:encoded><![CDATA[<p>IT may not have helped her, but it sure helped me. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikas gautam</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-679</link>
		<dc:creator>vikas gautam</dc:creator>
		<pubDate>Mon, 07 Mar 2011 09:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-679</guid>
		<description>thanks for the info can you tell me how to display the  radio button on vertically one after other   in  drop list</description>
		<content:encoded><![CDATA[<p>thanks for the info can you tell me how to display the  radio button on vertically one after other   in  drop list</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bonita</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-639</link>
		<dc:creator>Bonita</dc:creator>
		<pubDate>Thu, 13 Jan 2011 15:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-639</guid>
		<description>hi! ..do you have any advice when it comes to styling drop-down fields with Contact Form 7? My other fields look great, but the drop-down boxes are the old boring box look.. Please help!

----------------------------------------------
Hello Bonita,

Regards to styling  drop down menu or any other item of contact form 7

1) each item have its own id but you can add your own  id or class to that item.
2) add needed style to id or style of that item

to save time keep that style and item id for your future usage reference.

For example  you can add a drop down menu by using following code to a contact form:

&lt;p&gt;Drop down&lt;br /&gt;
[select menu-761 id:my-Drop-down class:my-Drop-down-class &quot;one&quot; &quot;two&quot; &quot;three&quot;]
&lt;/p&gt;

http://screencast.com/t/18WFjN2KPwM


Please note the id ( which is my-Drop-down)  and class name ( which is  my-Drop-down-class )
Now try to add following style to your theme style.css

#my-Drop-down  {
    background-color: #aaa;
    border: 1px solid #A5A5A5;
    font-size: 18px;
    color: #fff;
    width: 150px;
}
#my-Drop-down option {
    background-color: #bbb;
    border-bottom: 1px solid #dadada;
}

http://screencast.com/t/uKY4W3qqRtH

And result will be like
http://screencast.com/t/bljBcnZa
http://screencast.com/t/u2DDFSD9qMDb

So secret is #my-Drop-down and #my-Drop-down option,   you can add  them as  many other  css style you like.  such as changing background.

I hope above helped.

Have a great time rest of your day.
Andy</description>
		<content:encoded><![CDATA[<p>hi! ..do you have any advice when it comes to styling drop-down fields with Contact Form 7? My other fields look great, but the drop-down boxes are the old boring box look.. Please help!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Hello Bonita,</p>
<p>Regards to styling  drop down menu or any other item of contact form 7</p>
<p>1) each item have its own id but you can add your own  id or class to that item.<br />
2) add needed style to id or style of that item</p>
<p>to save time keep that style and item id for your future usage reference.</p>
<p>For example  you can add a drop down menu by using following code to a contact form:</p>
<p>Drop down<br />
[select menu-761 id:my-Drop-down class:my-Drop-down-class "one" "two" "three"]
</p>
<p><a href="http://screencast.com/t/18WFjN2KPwM" >http://screencast.com/t/18WFjN2KPwM</a></p>
<p>Please note the id ( which is my-Drop-down)  and class name ( which is  my-Drop-down-class )<br />
Now try to add following style to your theme style.css</p>
<p>#my-Drop-down  {<br />
    background-color: #aaa;<br />
    border: 1px solid #A5A5A5;<br />
    font-size: 18px;<br />
    color: #fff;<br />
    width: 150px;<br />
}<br />
#my-Drop-down option {<br />
    background-color: #bbb;<br />
    border-bottom: 1px solid #dadada;<br />
}</p>
<p><a href="http://screencast.com/t/uKY4W3qqRtH" >http://screencast.com/t/uKY4W3qqRtH</a></p>
<p>And result will be like<br />
<a href="http://screencast.com/t/bljBcnZa" >http://screencast.com/t/bljBcnZa</a><br />
<a href="http://screencast.com/t/u2DDFSD9qMDb" >http://screencast.com/t/u2DDFSD9qMDb</a></p>
<p>So secret is #my-Drop-down and #my-Drop-down option,   you can add  them as  many other  css style you like.  such as changing background.</p>
<p>I hope above helped.</p>
<p>Have a great time rest of your day.<br />
Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Perez</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-601</link>
		<dc:creator>Ivan Perez</dc:creator>
		<pubDate>Mon, 06 Dec 2010 22:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-601</guid>
		<description>Hello, can you make an example code using this
[file  your-file]?

I wanted to change this &quot;browse&quot; button&quot; to an image, then i tried but it didn&#039;t work =/

Thanks!
-- Short answer is NO. There is not easy way to do this. but long answer is YES!  Here is the long answer: http://www.quirksmode.org/dom/inputfile.html </description>
		<content:encoded><![CDATA[<p>Hello, can you make an example code using this<br />
[file  your-file]?</p>
<p>I wanted to change this &#8220;browse&#8221; button&#8221; to an image, then i tried but it didn&#8217;t work =/</p>
<p>Thanks!<br />
&#8211; Short answer is NO. There is not easy way to do this. but long answer is YES!  Here is the long answer: <a href="http://www.quirksmode.org/dom/inputfile.html" >http://www.quirksmode.org/dom/inputfile.html</a> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aksam Sri Lanka</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-596</link>
		<dc:creator>Aksam Sri Lanka</dc:creator>
		<pubDate>Thu, 02 Dec 2010 12:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-596</guid>
		<description>thanks for this. it help me a lot.</description>
		<content:encoded><![CDATA[<p>thanks for this. it help me a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james hua</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-542</link>
		<dc:creator>james hua</dc:creator>
		<pubDate>Wed, 25 Aug 2010 16:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-542</guid>
		<description>oh my goodness, i just figured it out with your help!  thanks so much.</description>
		<content:encoded><![CDATA[<p>oh my goodness, i just figured it out with your help!  thanks so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-470</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Mon, 21 Jun 2010 21:45:47 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-470</guid>
		<description>Thank you very much, you helped me a lot :)</description>
		<content:encoded><![CDATA[<p>Thank you very much, you helped me a lot <img src='http://hecode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ralf Langmaack</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-120</link>
		<dc:creator>Ralf Langmaack</dc:creator>
		<pubDate>Thu, 26 Nov 2009 11:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-120</guid>
		<description>How can I change the background-color only the fields markes as required? I tried 

.wpcf7-validates-as-required {
	background-color: #ccc;
}

but this has no effect. Any ideas?</description>
		<content:encoded><![CDATA[<p>How can I change the background-color only the fields markes as required? I tried </p>
<p>.wpcf7-validates-as-required {<br />
	background-color: #ccc;<br />
}</p>
<p>but this has no effect. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cory</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-72</link>
		<dc:creator>cory</dc:creator>
		<pubDate>Sat, 17 Oct 2009 00:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-72</guid>
		<description>Ok, nice code. BUT what I want to do is to change the font color of the field headings. That is &quot;Your Name (required)&quot; and so on. It looks like the font color is pulled from the WP theme stylesheet. Any idea how to change this?</description>
		<content:encoded><![CDATA[<p>Ok, nice code. BUT what I want to do is to change the font color of the field headings. That is &#8220;Your Name (required)&#8221; and so on. It looks like the font color is pulled from the WP theme stylesheet. Any idea how to change this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-65</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 30 Sep 2009 19:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-65</guid>
		<description>Hello Ten,
I wonder how stylesheet.css  for contact form can even say inactive! stylesheet.css is a simple text file. just edit it and upload it. If you still have difficulty  with this send me a screen shots or more info to help you farther.

Thanks 
Andy</description>
		<content:encoded><![CDATA[<p>Hello Ten,<br />
I wonder how stylesheet.css  for contact form can even say inactive! stylesheet.css is a simple text file. just edit it and upload it. If you still have difficulty  with this send me a screen shots or more info to help you farther.</p>
<p>Thanks<br />
Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ten</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-64</link>
		<dc:creator>Ten</dc:creator>
		<pubDate>Wed, 30 Sep 2009 19:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-64</guid>
		<description>How come the stylesheet for contact form says inactive? I can&#039;t do any changes.

Thanks.</description>
		<content:encoded><![CDATA[<p>How come the stylesheet for contact form says inactive? I can&#8217;t do any changes.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ken</title>
		<link>http://hecode.com/change-style-of-your-wp-contact-page/comment-page-1/#comment-61</link>
		<dc:creator>ken</dc:creator>
		<pubDate>Tue, 29 Sep 2009 03:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=53#comment-61</guid>
		<description>You&#039;re my hero. I&#039;ve been working for a couple hours trying to figure out how to make changes to WP Contact 7.

Thanks,
Ken Y.</description>
		<content:encoded><![CDATA[<p>You&#8217;re my hero. I&#8217;ve been working for a couple hours trying to figure out how to make changes to WP Contact 7.</p>
<p>Thanks,<br />
Ken Y.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

