<?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: Coding a Web Layout in XHTML and CSS</title>
	<atom:link href="http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/</link>
	<description>A website about the internet</description>
	<lastBuildDate>Fri, 19 Mar 2010 06:17:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Making a start in jQuery and an image slider &#124; iWeb University</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2843</link>
		<dc:creator>Making a start in jQuery and an image slider &#124; iWeb University</dc:creator>
		<pubDate>Wed, 17 Mar 2010 04:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2843</guid>
		<description>[...] if you don’t exactly understand what I’ve done here you might want to check out our tutorial on how to code a layout in XHTML and CSS, to get a basic understanding of [...]</description>
		<content:encoded><![CDATA[<p>[...] if you don’t exactly understand what I’ve done here you might want to check out our tutorial on how to code a layout in XHTML and CSS, to get a basic understanding of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codesquid</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2228</link>
		<dc:creator>Codesquid</dc:creator>
		<pubDate>Wed, 03 Feb 2010 18:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2228</guid>
		<description>This has just inspired me to write a tutorial of my own! Thank you for this, thumbs up!</description>
		<content:encoded><![CDATA[<p>This has just inspired me to write a tutorial of my own! Thank you for this, thumbs up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YamaDan</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2189</link>
		<dc:creator>YamaDan</dc:creator>
		<pubDate>Mon, 01 Feb 2010 11:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2189</guid>
		<description>Nice tut..
Is there a link to the working example on here?
Consider this site bookmarked.
Keep up the good work.</description>
		<content:encoded><![CDATA[<p>Nice tut..<br />
Is there a link to the working example on here?<br />
Consider this site bookmarked.<br />
Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lin</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2151</link>
		<dc:creator>lin</dc:creator>
		<pubDate>Sat, 30 Jan 2010 00:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2151</guid>
		<description>I was wondering if anyone might know what might be happening here. I noticed when I made another design based off the coding on this one it didn&#039;t work the same. For instance, the floating elements (content area 1 &amp; 2) on this web page stay together when the browser is resized (thank you again Johnny for helping me with this) but I had to contain my div&#039;s in an outer div tag so they wouldn&#039;t move around. Also, I noticed when my page is reduced, the text in the menu moves with the browser (all the text shifts left if the page is being resized) but this didn&#039;t happen with the code in this tutorial and the code was typically the same. Hmm...</description>
		<content:encoded><![CDATA[<p>I was wondering if anyone might know what might be happening here. I noticed when I made another design based off the coding on this one it didn&#8217;t work the same. For instance, the floating elements (content area 1 &amp; 2) on this web page stay together when the browser is resized (thank you again Johnny for helping me with this) but I had to contain my div&#8217;s in an outer div tag so they wouldn&#8217;t move around. Also, I noticed when my page is reduced, the text in the menu moves with the browser (all the text shifts left if the page is being resized) but this didn&#8217;t happen with the code in this tutorial and the code was typically the same. Hmm&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnny</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2148</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Fri, 29 Jan 2010 20:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2148</guid>
		<description>Surround the two divs that you&#039;re floating with another div with a width equal or greater than the combined two divs. For instance:

[code]
&lt;div style=&quot;width: 1000px;&quot;&gt;
     &lt;div style=&quot;float: left; width: 500px;&quot;&gt;
          Content here
     &lt;/div&gt;
     &lt;div style=&quot;float: left; width: 500px;&quot;&gt;
          Content here
     &lt;/div&gt;
&lt;/div&gt;
[/code]</description>
		<content:encoded><![CDATA[<p>Surround the two divs that you&#8217;re floating with another div with a width equal or greater than the combined two divs. For instance:</p>
<pre class="brush: plain;">
&lt;div style=&quot;width: 1000px;&quot;&gt;
     &lt;div style=&quot;float: left; width: 500px;&quot;&gt;
          Content here
     &lt;/div&gt;
     &lt;div style=&quot;float: left; width: 500px;&quot;&gt;
          Content here
     &lt;/div&gt;
&lt;/div&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: lin</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2146</link>
		<dc:creator>lin</dc:creator>
		<pubDate>Fri, 29 Jan 2010 19:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2146</guid>
		<description>I was hoping someone could help me with an issue I&#039;m having. I mocked up a document on my own and have an image with a box next to it. When I test it in the browser and make my browser smaller, the box that was next to the image moves below the image. Basically I&#039;m wondering how I can make it so the box stays next to the image without moving (when browser is minimized.) Thanks!!</description>
		<content:encoded><![CDATA[<p>I was hoping someone could help me with an issue I&#8217;m having. I mocked up a document on my own and have an image with a box next to it. When I test it in the browser and make my browser smaller, the box that was next to the image moves below the image. Basically I&#8217;m wondering how I can make it so the box stays next to the image without moving (when browser is minimized.) Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhijit V. Chaore</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-2101</link>
		<dc:creator>Abhijit V. Chaore</dc:creator>
		<pubDate>Tue, 26 Jan 2010 11:53:15 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-2101</guid>
		<description>Nice tutorial. Thanks for the tips.</description>
		<content:encoded><![CDATA[<p>Nice tutorial. Thanks for the tips.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-1768</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sun, 27 Dec 2009 14:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-1768</guid>
		<description>I appreciate the quick reply.  I look forward to that TUT.</description>
		<content:encoded><![CDATA[<p>I appreciate the quick reply.  I look forward to that TUT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnny</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-1765</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Sun, 27 Dec 2009 01:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-1765</guid>
		<description>Hey Ryan, I&#039;m going to do a tutorial on structuring your website&#039;s files soon, so you might wanna check that out.

To answer your question, separate pages go in separate html files, i.e. about.htm, index.htm. All CSS can go in one file, you just have to include it in all the HTML files.</description>
		<content:encoded><![CDATA[<p>Hey Ryan, I&#8217;m going to do a tutorial on structuring your website&#8217;s files soon, so you might wanna check that out.</p>
<p>To answer your question, separate pages go in separate html files, i.e. about.htm, index.htm. All CSS can go in one file, you just have to include it in all the HTML files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://webtint.net/tutorials/coding-a-web-layout-in-xhtml-and-css/comment-page-1/#comment-1762</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 26 Dec 2009 23:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://webtint.net/?p=643#comment-1762</guid>
		<description>Thanks for the tut.  I&#039;m still confused on how to structure multiple pages.  For example, I have a style.css and an index.html file for the home page, where would i put the html for the &quot;about page&quot;?  I can put the css for all pages in the same style.css file, correct?</description>
		<content:encoded><![CDATA[<p>Thanks for the tut.  I&#8217;m still confused on how to structure multiple pages.  For example, I have a style.css and an index.html file for the home page, where would i put the html for the &#8220;about page&#8221;?  I can put the css for all pages in the same style.css file, correct?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
