<?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 for www.MichaelWalsh.org</title>
	<atom:link href="http://michaelwalsh.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelwalsh.org</link>
	<description>Mike Walsh&#039;s random thoughts and musings ...</description>
	<lastBuildDate>Mon, 21 May 2012 14:25:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Hiding bullets on a Google Form by stefan</title>
		<link>http://michaelwalsh.org/blog/2011/10/24/hiding-bullets-on-a-google-form/#comment-51143</link>
		<dc:creator>stefan</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://michaelwalsh.org/?p=577#comment-51143</guid>
		<description>Thanks for the quick feedback - The bullets are indeed solved and I need indeed a fix for the white space. 

I&#039;m not a CSS expert - so I will give it a try to figure out what will happen.</description>
		<content:encoded><![CDATA[<p>Thanks for the quick feedback &#8211; The bullets are indeed solved and I need indeed a fix for the white space. </p>
<p>I&#8217;m not a CSS expert &#8211; so I will give it a try to figure out what will happen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wpGForm by Mike Walsh</title>
		<link>http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/#comment-50901</link>
		<dc:creator>Mike Walsh</dc:creator>
		<pubDate>Sun, 20 May 2012 20:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://michaelwalsh.org/?page_id=472#comment-50901</guid>
		<description>My blog is also hosted on GoDaddy do there shouldn&#039;t be any issues UNLESS you are using the free hosting plan GoDaddy offers with domain registration.  That plan disables the PHP functionality that wpGForm depends on the retrieve the form content.</description>
		<content:encoded><![CDATA[<p>My blog is also hosted on GoDaddy do there shouldn&#8217;t be any issues UNLESS you are using the free hosting plan GoDaddy offers with domain registration.  That plan disables the PHP functionality that wpGForm depends on the retrieve the form content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wpGForm by Mike</title>
		<link>http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/#comment-50892</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 20 May 2012 18:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://michaelwalsh.org/?page_id=472#comment-50892</guid>
		<description>Mike,

I keep getting the &#039;Unable to retrive Google Form..&quot; message.

Form is published

I am currently using godaddy...do they present a problem with API + Wordpress?

here is the link:

http://escapitos.com/customize-your-escape/

Thanks for your time and assistance!</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>I keep getting the &#8216;Unable to retrive Google Form..&#8221; message.</p>
<p>Form is published</p>
<p>I am currently using godaddy&#8230;do they present a problem with API + WordPress?</p>
<p>here is the link:</p>
<p><a href="http://escapitos.com/customize-your-escape/" rel="nofollow">http://escapitos.com/customize-your-escape/</a></p>
<p>Thanks for your time and assistance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hiding bullets on a Google Form by Mike Walsh</title>
		<link>http://michaelwalsh.org/blog/2011/10/24/hiding-bullets-on-a-google-form/#comment-50787</link>
		<dc:creator>Mike Walsh</dc:creator>
		<pubDate>Sat, 19 May 2012 10:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://michaelwalsh.org/?p=577#comment-50787</guid>
		<description>I finally had a chance to look at your problem this morning, it has been a busy week at work!  Your theme has a style which adds the bullets and they are actually images as opposed to HTML defined bullets.  This is what your theme defines:

&lt;pre&gt;
#content ul &gt; li {
    background: url(&quot;images/mantra_bullet.png&quot;) no-repeat scroll 0 10px transparent;
    text-indent: 20px;
}
&lt;/pre&gt;

To fix it, you need more than just the CSS you have defined in the wpGForm custom CSS setting.  I modified what you have and added another property:
&lt;pre&gt;
div.ss-form-entry &gt; ul &gt; li {
    background-image: none !important;
    line-height: 0;
    list-style-type: none;
}
&lt;/pre&gt;
Note the use of the &lt;strong&gt;!important&lt;/strong&gt; CSS directive.  Your theme&#039;s CSS is taking precedence over the custom CSS (it must load it later) so the &lt;strong&gt;!important&lt;/strong&gt; allows me to make the bullets disappear.  You may need to do something similar to tighten up the white space if that is something else you want to fix.</description>
		<content:encoded><![CDATA[<p>I finally had a chance to look at your problem this morning, it has been a busy week at work!  Your theme has a style which adds the bullets and they are actually images as opposed to HTML defined bullets.  This is what your theme defines:</p>
<pre>
#content ul > li {
    background: url("images/mantra_bullet.png") no-repeat scroll 0 10px transparent;
    text-indent: 20px;
}
</pre>
<p>To fix it, you need more than just the CSS you have defined in the wpGForm custom CSS setting.  I modified what you have and added another property:</p>
<pre>
div.ss-form-entry > ul > li {
    background-image: none !important;
    line-height: 0;
    list-style-type: none;
}
</pre>
<p>Note the use of the <strong>!important</strong> CSS directive.  Your theme&#8217;s CSS is taking precedence over the custom CSS (it must load it later) so the <strong>!important</strong> allows me to make the bullets disappear.  You may need to do something similar to tighten up the white space if that is something else you want to fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hiding bullets on a Google Form by Mike Walsh</title>
		<link>http://michaelwalsh.org/blog/2011/10/24/hiding-bullets-on-a-google-form/#comment-50422</link>
		<dc:creator>Mike Walsh</dc:creator>
		<pubDate>Wed, 16 May 2012 16:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://michaelwalsh.org/?p=577#comment-50422</guid>
		<description>If you want to fill out my &lt;a href=&quot;http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/help-and-support/&quot; rel=&quot;nofollow&quot;&gt;Help and Support&lt;/a&gt; form, I&#039;ll be happy to take a look at it.</description>
		<content:encoded><![CDATA[<p>If you want to fill out my <a href="http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/help-and-support/" rel="nofollow">Help and Support</a> form, I&#8217;ll be happy to take a look at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hiding bullets on a Google Form by stefan</title>
		<link>http://michaelwalsh.org/blog/2011/10/24/hiding-bullets-on-a-google-form/#comment-50394</link>
		<dc:creator>stefan</dc:creator>
		<pubDate>Wed, 16 May 2012 15:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://michaelwalsh.org/?p=577#comment-50394</guid>
		<description>I&#039;m try to get rid of the bullet points but without any success.
I have added the code in de Custom part and I have enabled both default and Customer CSS.</description>
		<content:encoded><![CDATA[<p>I&#8217;m try to get rid of the bullet points but without any success.<br />
I have added the code in de Custom part and I have enabled both default and Customer CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-SwimTeam by Mike Walsh</title>
		<link>http://michaelwalsh.org/wordpress/wordpress-plugins/wp-swimteam/#comment-49694</link>
		<dc:creator>Mike Walsh</dc:creator>
		<pubDate>Fri, 11 May 2012 03:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.michaelwalsh.org/?page_id=271#comment-49694</guid>
		<description>Excellent, glad to hear it.  BTW - I have updated the v1.25 beta release to address a few more issues.</description>
		<content:encoded><![CDATA[<p>Excellent, glad to hear it.  BTW &#8211; I have updated the v1.25 beta release to address a few more issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-SwimTeam by Vanessa Barrett</title>
		<link>http://michaelwalsh.org/wordpress/wordpress-plugins/wp-swimteam/#comment-49612</link>
		<dc:creator>Vanessa Barrett</dc:creator>
		<pubDate>Thu, 10 May 2012 13:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.michaelwalsh.org/?page_id=271#comment-49612</guid>
		<description>Thanks Mike.  I have users now.  All appears to be working on your awesome plugin.  I am going to spend the day checking it out and trying out some shortcocdes.

Thanks for everything, you ROCK!
V Barrett</description>
		<content:encoded><![CDATA[<p>Thanks Mike.  I have users now.  All appears to be working on your awesome plugin.  I am going to spend the day checking it out and trying out some shortcocdes.</p>
<p>Thanks for everything, you ROCK!<br />
V Barrett</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-SwimTeam by Mike Walsh</title>
		<link>http://michaelwalsh.org/wordpress/wordpress-plugins/wp-swimteam/#comment-49475</link>
		<dc:creator>Mike Walsh</dc:creator>
		<pubDate>Wed, 09 May 2012 20:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.michaelwalsh.org/?page_id=271#comment-49475</guid>
		<description>I have &lt;a href=&quot;http://www.wp-swimteam.org/2012/05/09/wp-swimteam-v1-25-beta-release/&quot; rel=&quot;nofollow&quot;&gt;posted a beta release of v1.25&lt;/a&gt; which addresses a bunch of user issues.  Please give it a try and let me know how you make out.</description>
		<content:encoded><![CDATA[<p>I have <a href="http://www.wp-swimteam.org/2012/05/09/wp-swimteam-v1-25-beta-release/" rel="nofollow">posted a beta release of v1.25</a> which addresses a bunch of user issues.  Please give it a try and let me know how you make out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-SwimTeam by Mike Walsh</title>
		<link>http://michaelwalsh.org/wordpress/wordpress-plugins/wp-swimteam/#comment-49474</link>
		<dc:creator>Mike Walsh</dc:creator>
		<pubDate>Wed, 09 May 2012 20:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.michaelwalsh.org/?page_id=271#comment-49474</guid>
		<description>I have a beta version of wp-SwimTeam posted which fixes a bunch of multi-site issues.  &lt;a href=&quot;http://www.wp-swimteam.org/2012/05/09/wp-swimteam-v1-25-beta-release/&quot; rel=&quot;nofollow&quot;&gt;Check it out&lt;/a&gt; and let me know if you find anything.</description>
		<content:encoded><![CDATA[<p>I have a beta version of wp-SwimTeam posted which fixes a bunch of multi-site issues.  <a href="http://www.wp-swimteam.org/2012/05/09/wp-swimteam-v1-25-beta-release/" rel="nofollow">Check it out</a> and let me know if you find anything.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

