<?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: Fixed Header &amp; Footer Layout: A Beginner&#8217;s Guide</title>
	<atom:link href="http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/</link>
	<description>Tutorials, Resources, Freebies, and Tips for Web Designers</description>
	<lastBuildDate>Wed, 07 Jul 2010 20:41:20 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jarod Taylor</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-542</link>
		<dc:creator>Jarod Taylor</dc:creator>
		<pubDate>Wed, 07 Jul 2010 20:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-542</guid>
		<description>Trust me, we all have our &quot;oops&quot; moments in web development! Take care. :)</description>
		<content:encoded><![CDATA[<p>Trust me, we all have our &#8220;oops&#8221; moments in web development! Take care. <img src='http://www.noobcube.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rl</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-541</link>
		<dc:creator>rl</dc:creator>
		<pubDate>Wed, 07 Jul 2010 20:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-541</guid>
		<description>Yeah, that&#039;s a little embarrassing - but I&#039;d never call myself a programmer so I can live with the oops.  Thanks for the help.  It&#039;s working in all browsers now.  Cheers!</description>
		<content:encoded><![CDATA[<p>Yeah, that&#8217;s a little embarrassing &#8211; but I&#8217;d never call myself a programmer so I can live with the oops.  Thanks for the help.  It&#8217;s working in all browsers now.  Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jarod Taylor</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-540</link>
		<dc:creator>Jarod Taylor</dc:creator>
		<pubDate>Wed, 07 Jul 2010 20:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-540</guid>
		<description>I&#039;m looking at your code, and you have footerL inside your footerR element. If you remove that div (and its contents, the UL) outside and above the footerL element, it will work just fine. You have some relative/absolute positioned elements nested in there which are causing the issues (to be honest, I&#039;m surprised it&#039;s not breaking more than just an unclickable link [which is caused by the z-index]). If you set up your HTML document like this (below), it should fix it.

&lt;pre&gt;&lt;code&gt;
&lt;div id=&quot;footerL&quot;&gt;
	&lt;ul&gt;
		&lt;li&gt;&#169; 1999-2010 360 FLOORING.com&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&quot;footerR&quot;&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;a href=#&quot;&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;a href=#&quot;&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;a href=#&quot;&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;a href=#&quot;&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
&lt;/code&gt;
&lt;/pre&gt;
&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking at your code, and you have footerL inside your footerR element. If you remove that div (and its contents, the UL) outside and above the footerL element, it will work just fine. You have some relative/absolute positioned elements nested in there which are causing the issues (to be honest, I&#8217;m surprised it&#8217;s not breaking more than just an unclickable link [which is caused by the z-index]). If you set up your HTML document like this (below), it should fix it.</p>
<pre><code>
&lt;div id="footerL"&gt;
	&lt;ul&gt;
		&lt;li&gt;&copy; 1999-2010 360 FLOORING.com&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
&lt;div id="footerR"&gt;
	&lt;ul&gt;
		&lt;li&gt;
			&lt;a href=#"&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;a href=#"&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;a href=#"&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
		&lt;li&gt;
			&lt;a href=#"&gt;Nav link&lt;/a&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
&lt;/code&gt;
&lt;/pre&gt;
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: rl</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-539</link>
		<dc:creator>rl</dc:creator>
		<pubDate>Wed, 07 Jul 2010 19:58:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-539</guid>
		<description>take a look at our site www.360flooring.com in FF vs. IE and you&#039;ll notice that the links are not &quot;clickable&quot; in FF or Chrome, but they work just fine in IE.</description>
		<content:encoded><![CDATA[<p>take a look at our site <a href="http://www.360flooring.com">http://www.360flooring.com</a> in FF vs. IE and you&#8217;ll notice that the links are not &#8220;clickable&#8221; in FF or Chrome, but they work just fine in IE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jarod Taylor</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-538</link>
		<dc:creator>Jarod Taylor</dc:creator>
		<pubDate>Wed, 07 Jul 2010 19:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-538</guid>
		<description>It&#039;s been quite some time since I visited this tutorial, I&#039;m not quite sure I know what you&#039;re referring to when you speak of the URL&#039;s not being active.</description>
		<content:encoded><![CDATA[<p>It&#8217;s been quite some time since I visited this tutorial, I&#8217;m not quite sure I know what you&#8217;re referring to when you speak of the URL&#8217;s not being active.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rl</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-537</link>
		<dc:creator>rl</dc:creator>
		<pubDate>Wed, 07 Jul 2010 19:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-537</guid>
		<description>The fixed footer display properly, but the URL&#039;s are not active in FF or Chrome?  It works just fine in IE though.  Please advise.</description>
		<content:encoded><![CDATA[<p>The fixed footer display properly, but the URL&#8217;s are not active in FF or Chrome?  It works just fine in IE though.  Please advise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Wentworth-Bell</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-512</link>
		<dc:creator>Michael Wentworth-Bell</dc:creator>
		<pubDate>Mon, 07 Jun 2010 01:30:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-512</guid>
		<description>Cheers for having a quick look!

here&#039;s a link to what i&#039;ve currently got. 

&lt;a href=&quot;http://reelpictures.com.au/ultrasound_demo/&quot; rel=&quot;nofollow&quot;&gt;http://reelpictures.com.au/ultrasound_demo/&lt;/a&gt;

I&#039;ve tested this mainly in Chrome, so hopefully it will appear ok. The header, footer, and sidebar stick fine for me, and on the sidebar, is a link for &#039;heading 1.&#039; 
when you click it, the actual content &#039;Link to heading 1&#039; jumps to the top of the page, but that&#039;s behind the header! My aim is to get it to stop just under the curve.

Also, none of the actual styles have been made yet, so yeah, it looks like ass.</description>
		<content:encoded><![CDATA[<p>Cheers for having a quick look!</p>
<p>here&#8217;s a link to what i&#8217;ve currently got. </p>
<p><a href="http://reelpictures.com.au/ultrasound_demo/">http://reelpictures.com.au/ultrasound_demo/</a></p>
<p>I&#8217;ve tested this mainly in Chrome, so hopefully it will appear ok. The header, footer, and sidebar stick fine for me, and on the sidebar, is a link for &#8216;heading 1.&#8217;<br />
when you click it, the actual content &#8216;Link to heading 1&#8242; jumps to the top of the page, but that&#8217;s behind the header! My aim is to get it to stop just under the curve.</p>
<p>Also, none of the actual styles have been made yet, so yeah, it looks like ass.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jarod Taylor</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-510</link>
		<dc:creator>Jarod Taylor</dc:creator>
		<pubDate>Thu, 03 Jun 2010 13:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-510</guid>
		<description>Do you have a URL I can look at, to better understand your issue? 

Thanks!</description>
		<content:encoded><![CDATA[<p>Do you have a URL I can look at, to better understand your issue? </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Wentworth-Bell</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-509</link>
		<dc:creator>Michael Wentworth-Bell</dc:creator>
		<pubDate>Thu, 03 Jun 2010 04:47:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-509</guid>
		<description>Such an awesome tutorial! I usually work in motion graphics, and have to make a website for a client for the first time in a few years, this was an excellent overview!

I have a slight problem at the moment though! I have managed to take your code and add a sidebar on the left side of the page. It is also static, like the header and footer. 
The sidebar has the headings that are in the content, and clicking on the headings will take you to that section of the content, via inline Anchor links.

All works fine, but when I click on these anchor links, the headings in the content are at the TOP of the page (like they are meant to), but this is under the header! is there an easy way to offset these?

At the moment I am thinking of just moving the &lt;a&gt; tags a bit lower then the actual titles to line up right, but it&#039;s a case by case problem and a pain!


Thanks again for sharing this great tutorial.</description>
		<content:encoded><![CDATA[<p>Such an awesome tutorial! I usually work in motion graphics, and have to make a website for a client for the first time in a few years, this was an excellent overview!</p>
<p>I have a slight problem at the moment though! I have managed to take your code and add a sidebar on the left side of the page. It is also static, like the header and footer.<br />
The sidebar has the headings that are in the content, and clicking on the headings will take you to that section of the content, via inline Anchor links.</p>
<p>All works fine, but when I click on these anchor links, the headings in the content are at the TOP of the page (like they are meant to), but this is under the header! is there an easy way to offset these?</p>
<p>At the moment I am thinking of just moving the <a> tags a bit lower then the actual titles to line up right, but it&#8217;s a case by case problem and a pain!</p>
<p>Thanks again for sharing this great tutorial.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thing</title>
		<link>http://www.noobcube.com/tutorials/html-css/fixed-header-footer-layout-a-beginners-guide-/comment-page-1/#comment-507</link>
		<dc:creator>Thing</dc:creator>
		<pubDate>Tue, 01 Jun 2010 20:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.noobcube.com/?p=418#comment-507</guid>
		<description>sorry for the triple postin&#039;

#ie6-container-wrap style should be like this:

#ie6-container-wrap {
	width: 100%;
	height: 100%;
	overflow-x:hidden;
	overflow-y:scroll;
}</description>
		<content:encoded><![CDATA[<p>sorry for the triple postin&#8217;</p>
<p>#ie6-container-wrap style should be like this:</p>
<p>#ie6-container-wrap {<br />
	width: 100%;<br />
	height: 100%;<br />
	overflow-x:hidden;<br />
	overflow-y:scroll;<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
