<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
	>
<channel>
	<title>Comments on: Add Widgets To Your WordPress Footer &#8211; Easy How To Guide</title>
	<atom:link href="http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html/feed" rel="self" type="application/rss+xml" />
	<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html</link>
	<description>&#34; WordPress Your Life&#34;</description>
	<lastBuildDate>Tue, 24 Jan 2012 16:29:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Neha</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-17608</link>
		<dc:creator>Neha</dc:creator>
		<pubDate>Fri, 14 Oct 2011 08:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-17608</guid>
		<description>Thanks a lot for this tutorial. I m not a developer and I was so confused how to manage different sections of my footer through admin and this tutorial really worked for me. Thanks a lot..! :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this tutorial. I m not a developer and I was so confused how to manage different sections of my footer through admin and this tutorial really worked for me. Thanks a lot..! <img src='http://kevinsbrown.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rey Mendoza</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-676</link>
		<dc:creator>Rey Mendoza</dc:creator>
		<pubDate>Sat, 21 Aug 2010 11:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-676</guid>
		<description>youre a life saver, with a little bit of patience working with codes (Im not a programmer) it worked well for me

Many thanks!
Rey</description>
		<content:encoded><![CDATA[<p>youre a life saver, with a little bit of patience working with codes (Im not a programmer) it worked well for me</p>
<p>Many thanks!<br />
Rey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-673</link>
		<dc:creator>david</dc:creator>
		<pubDate>Sun, 11 Jul 2010 23:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-673</guid>
		<description>Thank you so much, it works well
you&#039;re brilliant.</description>
		<content:encoded><![CDATA[<p>Thank you so much, it works well<br />
you&#8217;re brilliant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-672</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 11 Jul 2010 21:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-672</guid>
		<description>I currently have this in the footer.php on this blog..

&lt;code&gt;&lt;div style=&quot;width:900px; margin: 0 auto; text-align:center;&quot;&gt;
  &lt;div id=&quot;footer-left&quot;&gt;
    &lt;ul&gt;
&lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
   &#124;&#124; !dynamic_sidebar(&#039;footer 1&#039;) ) : ?&gt; &lt;li&gt;
      &lt;?php endif; ?&gt;
    &lt;/ul&gt;
  &lt;/div&gt;
  &lt;div id=&quot;footer-middle&quot;&gt;
    &lt;ul&gt;
&lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
   &#124;&#124; !dynamic_sidebar(&#039;footer 2&#039;) ) : ?&gt; &lt;li&gt;
      &lt;?php endif; ?&gt;
    &lt;/ul&gt;
  &lt;/div&gt;
&lt;div id=&quot;footer-right&quot;&gt;
    &lt;ul&gt;
&lt;?php if ( !function_exists(&#039;dynamic_sidebar&#039;)
   &#124;&#124; !dynamic_sidebar(&#039;footer 3&#039;) ) : ?&gt; &lt;li&gt;
      &lt;?php endif; ?&gt;
    &lt;/ul&gt;
  &lt;/div&gt;
 &lt;/div&gt;&lt;/code&gt;

And this in style.css

&lt;code&gt;/* Footer Widgets */
#footer-left {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 30px;
	padding: 10px;
	text-align: center;
}
#footer-middle {
        width: 300px;
	float: left;
	margin: 15px 10px 10px 15px;
	padding: 10px;
	text-align: center;
}
#footer-right {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 15px;
	padding: 10px;
	text-align: center;
}&lt;/code&gt;

Hope it helps, K</description>
		<content:encoded><![CDATA[<p>I currently have this in the footer.php on this blog..</p>
<p><code>
<div style="width:900px; margin: 0 auto; text-align:center;">
<div id="footer-left">
<ul>
< ?php if ( !function_exists('dynamic_sidebar')<br />
   || !dynamic_sidebar('footer 1') ) : ?>
<li>
      < ?php endif; ?>
    </li>
</ul></div>
<div id="footer-middle">
<ul>
< ?php if ( !function_exists('dynamic_sidebar')<br />
   || !dynamic_sidebar('footer 2') ) : ?>
<li>
      < ?php endif; ?>
    </li>
</ul></div>
<div id="footer-right">
<ul>
< ?php if ( !function_exists('dynamic_sidebar')<br />
   || !dynamic_sidebar('footer 3') ) : ?>
<li>
      < ?php endif; ?>
    </li>
</ul></div>
</p></div>
<p></code></p>
<p>And this in style.css</p>
<p><code>/* Footer Widgets */<br />
#footer-left {<br />
	width: 210px;<br />
	float: left;<br />
	margin: 15px 10px 10px 30px;<br />
	padding: 10px;<br />
	text-align: center;<br />
}<br />
#footer-middle {<br />
        width: 300px;<br />
	float: left;<br />
	margin: 15px 10px 10px 15px;<br />
	padding: 10px;<br />
	text-align: center;<br />
}<br />
#footer-right {<br />
	width: 210px;<br />
	float: left;<br />
	margin: 15px 10px 10px 15px;<br />
	padding: 10px;<br />
	text-align: center;<br />
}</code></p>
<p>Hope it helps, K</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-671</link>
		<dc:creator>david</dc:creator>
		<pubDate>Fri, 09 Jul 2010 23:16:19 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-671</guid>
		<description>Thank you for the quick reply,

After i checked my template, it seems fixed width (930px), and i use most existing browsers, now i should tell you that I&#039;m not really good coder, i have tried setting fixed width to the widgets but i don&#039;t know what changes, widgets margin must have.

Could you please post, the code snippet you use for the current theme (1000px)!! that will help me out to understand what changes should i add to each different template fixed width.

I very appreciate your help.</description>
		<content:encoded><![CDATA[<p>Thank you for the quick reply,</p>
<p>After i checked my template, it seems fixed width (930px), and i use most existing browsers, now i should tell you that I&#8217;m not really good coder, i have tried setting fixed width to the widgets but i don&#8217;t know what changes, widgets margin must have.</p>
<p>Could you please post, the code snippet you use for the current theme (1000px)!! that will help me out to understand what changes should i add to each different template fixed width.</p>
<p>I very appreciate your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-670</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 08 Jul 2010 21:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-670</guid>
		<description>Hi david,

Thanks very much for the reply. I am glad this post has been helpful!

The behaviour will depend somewhat on what theme you are using (fixed width or not), and the browser you use to view the site.  For example, the theme I am using here (mine) is fixed 1000px width.  You will see the righthand side of the site gets gradually cut-off, as you reduce the width of the browser window.

The footer widgets positions also have a fixed width each.  You could try changing these to percentage width on your site, but you may find some widgets don&#039;t display very well, if the positions are very narrow.  I tend to prefer the fixed width, with perhaps not all three widget positions displaying, if the window is narrow.  Interestingly, it works just fine on iPod/iPhone and iPad, which is pretty important these days.</description>
		<content:encoded><![CDATA[<p>Hi david,</p>
<p>Thanks very much for the reply. I am glad this post has been helpful!</p>
<p>The behaviour will depend somewhat on what theme you are using (fixed width or not), and the browser you use to view the site.  For example, the theme I am using here (mine) is fixed 1000px width.  You will see the righthand side of the site gets gradually cut-off, as you reduce the width of the browser window.</p>
<p>The footer widgets positions also have a fixed width each.  You could try changing these to percentage width on your site, but you may find some widgets don&#8217;t display very well, if the positions are very narrow.  I tend to prefer the fixed width, with perhaps not all three widget positions displaying, if the window is narrow.  Interestingly, it works just fine on iPod/iPhone and iPad, which is pretty important these days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-669</link>
		<dc:creator>david</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-669</guid>
		<description>Thanks for posting this info! It’s really helped me a bunch as I’ve made changes to my template.

But i have noticed that the third widget goes away from the widgets when i open my site on many different resolutions, or resize the browser page ! is there any way to simply center the three widgets ??

Regards</description>
		<content:encoded><![CDATA[<p>Thanks for posting this info! It’s really helped me a bunch as I’ve made changes to my template.</p>
<p>But i have noticed that the third widget goes away from the widgets when i open my site on many different resolutions, or resize the browser page ! is there any way to simply center the three widgets ??</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ioloman</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comment-667</link>
		<dc:creator>ioloman</dc:creator>
		<pubDate>Sat, 10 Apr 2010 02:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://kevinsbrown.com/?p=92#comment-667</guid>
		<description>i just want to say thank you for the tutorial. it easy, and it work. that is all a good tutorial should be. keep up the good work</description>
		<content:encoded><![CDATA[<p>i just want to say thank you for the tutorial. it easy, and it work. that is all a good tutorial should be. keep up the good work</p>
]]></content:encoded>
	</item>
</channel>
</rss>

