<?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 &#8211; Website Header &amp; Navigation</title> <atom:link href="http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/feed/" rel="self" type="application/rss+xml" /><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/</link> <description>A Resource For All Things Design</description> <lastBuildDate>Fri, 20 Aug 2010 21:32:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>By: ashish</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-29625</link> <dc:creator>ashish</dc:creator> <pubDate>Fri, 07 Aug 2009 19:33:48 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-29625</guid> <description>nice tutorial</description> <content:encoded><![CDATA[<p>nice tutorial</p> ]]></content:encoded> </item> <item><title>By: Andrew Houle</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-22139</link> <dc:creator>Andrew Houle</dc:creator> <pubDate>Sun, 03 May 2009 17:29:58 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-22139</guid> <description>@Hegbirts - Looking at your code the first thing I noticed is that you&#039;ve declared your &lt;head&gt; info twice and you&#039;ve got two &lt;body&gt; tags. Your html should look something like this:&lt;code&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;!-- All you head declarations here --&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;!-- All your page stuff here --&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;/code&gt;Also it seems IE is padding from the bottom of the header div. Try adding a .clear element. So something like this in the css:&lt;code&gt;.clear {
clear: both;
overflow: hidden;
height: 0px;
}&lt;/code&gt;Then in the html after the closing div of nav add:&lt;code&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/code&gt;That may not be the issue, but it&#039;s worth a try. If you are still having some trouble. Please feel free to email me at info@myinkblog.com and send index.html, style.css and the image files so that I can take a look at your code.</description> <content:encoded><![CDATA[<p>@Hegbirts &#8211; Looking at your code the first thing I noticed is that you&#8217;ve declared your<head> info twice and you&#8217;ve got two<body> tags. Your html should look something like this:</p><p><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br
/> &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;<br
/> &lt;head&gt;<br
/> &lt;!-- All you head declarations here --&gt;<br
/> &lt;/head&gt;<br
/> &lt;body&gt;<br
/> &lt;!-- All your page stuff here --&gt;<br
/> &lt;/body&gt;<br
/> &lt;/html&gt;</code></p><p>Also it seems IE is padding from the bottom of the header div. Try adding a .clear element. So something like this in the css:</p><p><code>.clear {<br
/> clear: both;<br
/> overflow: hidden;<br
/> height: 0px;<br
/> }</code></p><p>Then in the html after the closing div of nav add:</p><p><code>&lt;div class="clear"&gt;&lt;/div&gt;</code></p><p>That may not be the issue, but it&#8217;s worth a try. If you are still having some trouble. Please feel free to email me at <a
href="mailto:info@myinkblog.com">info@myinkblog.com</a> and send index.html, style.css and the image files so that I can take a look at your code.</body></head></p> ]]></content:encoded> </item> <item><title>By: Hegbirts</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-22136</link> <dc:creator>Hegbirts</dc:creator> <pubDate>Sun, 03 May 2009 15:44:31 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-22136</guid> <description>Ok, fixed my style sheet issue but still have not solved the IE issue. Any suggestions would be GREATLY appreciated!</description> <content:encoded><![CDATA[<p>Ok, fixed my style sheet issue but still have not solved the IE issue. Any suggestions would be GREATLY appreciated!</p> ]]></content:encoded> </item> <item><title>By: Hegbirts</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-22133</link> <dc:creator>Hegbirts</dc:creator> <pubDate>Sun, 03 May 2009 14:59:43 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-22133</guid> <description>Thanks Andrew, I worked with SSI yesterday but PHP worked better. I have Frontpage so my question was just regarding placement of the code, I figured out it should go at the top of the body (surprisingly no websites tell you where to put the code but perhaps it&#039;s so basic I should have known). My trouble now is making it look good for IE. I have IE 7 and the navigation bar is way off compared to Firefox. If you want to take a look at my site, it&#039;s www.birtsbags.com.  I&#039;m going to do some research on the css code for IE, hopefully I can figure it out. Do all my files need to be a PHP in order to use the header.php?
Another thing I am having trouble with is applying css to the rest of my site, once I added the php code, everything else lost it&#039;s styling.
Thanks again, the tutorial was really good.</description> <content:encoded><![CDATA[<p>Thanks Andrew, I worked with SSI yesterday but PHP worked better. I have Frontpage so my question was just regarding placement of the code, I figured out it should go at the top of the body (surprisingly no websites tell you where to put the code but perhaps it&#8217;s so basic I should have known). My trouble now is making it look good for IE. I have IE 7 and the navigation bar is way off compared to Firefox. If you want to take a look at my site, it&#8217;s <a
href="http://www.birtsbags.com">http://www.birtsbags.com</a>.  I&#8217;m going to do some research on the css code for IE, hopefully I can figure it out. Do all my files need to be a PHP in order to use the header.php?<br
/> Another thing I am having trouble with is applying css to the rest of my site, once I added the php code, everything else lost it&#8217;s styling.<br
/> Thanks again, the tutorial was really good.</p> ]]></content:encoded> </item> <item><title>By: Andrew Houle</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-22099</link> <dc:creator>Andrew Houle</dc:creator> <pubDate>Sat, 02 May 2009 23:14:43 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-22099</guid> <description>@Hegbirts - I&#039;m not sure exactly what you mean by the first question? If you mean what text editor to use, you could use anything from notepad to Dreamweaver. I recommend Dreamweaver or Coda. If you mean where to place your file, that depends on the setup of your server. Most hosts will have a folder like public_html for that sort of thing.You can add the header code to all the pages a number of ways, like Server Side Includes or PHP Includes. I prefer using PHP Includes. Here&#039;s a simple example to get you pointed in the right direction: http://www.tizag.com/phpT/include.phpLet me know if this doesn&#039;t answer your questions. I&#039;m more than happy to help with this stuff :)</description> <content:encoded><![CDATA[<p>@Hegbirts &#8211; I&#8217;m not sure exactly what you mean by the first question? If you mean what text editor to use, you could use anything from notepad to Dreamweaver. I recommend Dreamweaver or Coda. If you mean where to place your file, that depends on the setup of your server. Most hosts will have a folder like public_html for that sort of thing.</p><p>You can add the header code to all the pages a number of ways, like Server Side Includes or PHP Includes. I prefer using PHP Includes. Here&#8217;s a simple example to get you pointed in the right direction: <a
href="http://www.tizag.com/phpT/include.php">http://www.tizag.com/phpT/include.php</a></p><p>Let me know if this doesn&#8217;t answer your questions. I&#8217;m more than happy to help with this stuff :)</p> ]]></content:encoded> </item> <item><title>By: Hegbirts</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-22084</link> <dc:creator>Hegbirts</dc:creator> <pubDate>Sat, 02 May 2009 19:01:54 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-22084</guid> <description>Hi - this tutorial was terrific but I don&#039;t know how to add the code into my index.html file, can someone explain exactly what code to use and where it should be placed?  I am very new at this.  I also would like to add it to all of the other pages in my website. Thanks!</description> <content:encoded><![CDATA[<p>Hi &#8211; this tutorial was terrific but I don&#8217;t know how to add the code into my index.html file, can someone explain exactly what code to use and where it should be placed?  I am very new at this.  I also would like to add it to all of the other pages in my website. Thanks!</p> ]]></content:encoded> </item> <item><title>By: Trupti</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-21718</link> <dc:creator>Trupti</dc:creator> <pubDate>Sun, 26 Apr 2009 04:07:22 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-21718</guid> <description>Thanks Andrew for the link. I never thought tables could create a problem from SEO and also load slower. Will be troubling you over more queries.Thanks again.Trupti</description> <content:encoded><![CDATA[<p>Thanks Andrew for the link. I never thought tables could create a problem from SEO and also load slower. Will be troubling you over more queries.</p><p>Thanks again.</p><p>Trupti</p> ]]></content:encoded> </item> <item><title>By: Abhineet</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-21598</link> <dc:creator>Abhineet</dc:creator> <pubDate>Fri, 24 Apr 2009 03:28:02 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-21598</guid> <description>Hi Andrew!!
I am pursuing engineering in Electronics.
It was last year when I found web designing very interesting &amp; it emerged as my biggest hobby.
I found your blog while searching for a photoshop article &amp; was stuck at what I found here.
Its amazingly easy to follow your blogs to create awesome content.
You are a source of inspiration as well as knowledge for me.
Please include some more material, links or ebooks which would serve as starting points for the people who are very new to this field.
Anyways, great work.
Thanks
Abhineet</description> <content:encoded><![CDATA[<p>Hi Andrew!!<br
/> I am pursuing engineering in Electronics.<br
/> It was last year when I found web designing very interesting &amp; it emerged as my biggest hobby.<br
/> I found your blog while searching for a photoshop article &amp; was stuck at what I found here.<br
/> Its amazingly easy to follow your blogs to create awesome content.<br
/> You are a source of inspiration as well as knowledge for me.<br
/> Please include some more material, links or ebooks which would serve as starting points for the people who are very new to this field.<br
/> Anyways, great work.<br
/> Thanks<br
/> Abhineet</p> ]]></content:encoded> </item> <item><title>By: Andrew Houle</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-21342</link> <dc:creator>Andrew Houle</dc:creator> <pubDate>Sun, 19 Apr 2009 12:24:02 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-21342</guid> <description>@ Trupti - There are a number of reasons that HTML/CSS layouts are better than table based layouts. Tables are best left to only large amounts of tabular data. For layouts they are slower to load, less flexible, can hurt SEO, and so on... If you&#039;d like to learn more, this article is a pretty good starting place: http://www.wplancer.com/why-you-shouldnt-use-tables-for-web-layouts/</description> <content:encoded><![CDATA[<p>@ Trupti &#8211; There are a number of reasons that HTML/CSS layouts are better than table based layouts. Tables are best left to only large amounts of tabular data. For layouts they are slower to load, less flexible, can hurt SEO, and so on&#8230; If you&#8217;d like to learn more, this article is a pretty good starting place: <a
href="http://www.wplancer.com/why-you-shouldnt-use-tables-for-web-layouts/">http://www.wplancer.com/why-you-shouldnt-use-tables-for-web-layouts/</a></p> ]]></content:encoded> </item> <item><title>By: Trupti</title><link>http://www.myinkblog.com/2008/07/17/coding-website-header-navigation/comment-page-1/#comment-21306</link> <dc:creator>Trupti</dc:creator> <pubDate>Sat, 18 Apr 2009 15:58:10 +0000</pubDate> <guid
isPermaLink="false">http://www.myinkblog.com/?p=501#comment-21306</guid> <description>Hi Andrew,
I want to pursue a career in web designing and I found your tutorial very helpful. Thank you for sharing this great tutorial.I would like to know what is the difference between using a table to format the html compared to the div tags.thanks for all your help :)</description> <content:encoded><![CDATA[<p>Hi Andrew,<br
/> I want to pursue a career in web designing and I found your tutorial very helpful. Thank you for sharing this great tutorial.</p><p>I would like to know what is the difference between using a table to format the html compared to the div tags.</p><p>thanks for all your help :)</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching using disk

Served from: www.myinkblog.com @ 2010-09-02 17:30:06 -->