<?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: CSS &#8211; Sticky Footer</title>
	<atom:link href="http://www.davidjrush.com/blog/2009/01/css-sticky-footer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidjrush.com/blog/2009/01/css-sticky-footer/</link>
	<description>A blog written about web design, CSS, and coding for beginners</description>
	<lastBuildDate>Thu, 24 Dec 2009 02:35:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Donna</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-sticky-footer/comment-page-1/#comment-1567</link>
		<dc:creator>Donna</dc:creator>
		<pubDate>Fri, 21 Aug 2009 02:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=11#comment-1567</guid>
		<description>Thank you so much, finally my tweaks to my site work, thanks to your simple coding, now to change over 200 pages, eek.</description>
		<content:encoded><![CDATA[<p>Thank you so much, finally my tweaks to my site work, thanks to your simple coding, now to change over 200 pages, eek.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sayfa Dibine Yapışık Alt Alanlar(Sticky Footer) &#124; Açıkkod.org</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-sticky-footer/comment-page-1/#comment-1511</link>
		<dc:creator>Sayfa Dibine Yapışık Alt Alanlar(Sticky Footer) &#124; Açıkkod.org</dc:creator>
		<pubDate>Tue, 04 Aug 2009 13:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=11#comment-1511</guid>
		<description>[...] http://www.davidjrush.com/blog/2009/01/css-sticky-footer/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.davidjrush.com/blog/2009/01/css-sticky-footer/" rel="nofollow">http://www.davidjrush.com/blog/2009/01/css-sticky-footer/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-sticky-footer/comment-page-1/#comment-1384</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 14 Jul 2009 02:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=11#comment-1384</guid>
		<description>I was helping someone implement this sticky footer and I actually found a minor bug which I thought I should point out. The sticky footer works, but the bug appears if you apply a background to your wrapper div. Because of the height definitions, and an absence of a float definition, the wrapper background will not appear beyond the user&#039;s screen size. To fix this, add a float: left definition to your wrapper (or, if you are using the centered wrapper described above, create a new div that starts just inside your wrapper and closes just before your nudge div and give that both the float and background properties. That should solve that apparent problem.

This was actually only a bug in Firefox, go figure. That&#039;s probably the only firefox issue I&#039;ve ever come upon!</description>
		<content:encoded><![CDATA[<p>I was helping someone implement this sticky footer and I actually found a minor bug which I thought I should point out. The sticky footer works, but the bug appears if you apply a background to your wrapper div. Because of the height definitions, and an absence of a float definition, the wrapper background will not appear beyond the user&#8217;s screen size. To fix this, add a float: left definition to your wrapper (or, if you are using the centered wrapper described above, create a new div that starts just inside your wrapper and closes just before your nudge div and give that both the float and background properties. That should solve that apparent problem.</p>
<p>This was actually only a bug in Firefox, go figure. That&#8217;s probably the only firefox issue I&#8217;ve ever come upon!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Dionisio</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-sticky-footer/comment-page-1/#comment-1083</link>
		<dc:creator>Lawrence Dionisio</dc:creator>
		<pubDate>Fri, 12 Jun 2009 04:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=11#comment-1083</guid>
		<description>Hi Dave,

Aside from the sample i gave you via email. I have another one using the code you use. The PHP files that i wanted works all right this time.

Thanks mate!</description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>Aside from the sample i gave you via email. I have another one using the code you use. The PHP files that i wanted works all right this time.</p>
<p>Thanks mate!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-sticky-footer/comment-page-1/#comment-1079</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 11 Jun 2009 21:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=11#comment-1079</guid>
		<description>Thanks for the question Lawrence. All that a php include does is transfer content straight from the included file into the file that calls it. The best way to work with php includes (for a header and footer) is to create one entire page and then split it up into the page that changes, plus the header and footer template files.

To put it more simply regarding the example code written above, you could put everything up to and including the opening wrapper div tag in the header template file. Then put everything starting from and including the closing wrapper div tag into the footer template file.

I hope that helped!</description>
		<content:encoded><![CDATA[<p>Thanks for the question Lawrence. All that a php include does is transfer content straight from the included file into the file that calls it. The best way to work with php includes (for a header and footer) is to create one entire page and then split it up into the page that changes, plus the header and footer template files.</p>
<p>To put it more simply regarding the example code written above, you could put everything up to and including the opening wrapper div tag in the header template file. Then put everything starting from and including the closing wrapper div tag into the footer template file.</p>
<p>I hope that helped!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
