<?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/coding-website-header-navigation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myinkblog.com/coding-website-header-navigation/</link>
	<description>A Resource For All Things Design</description>
	<lastBuildDate>Thu, 05 Jan 2012 16:05:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Marçau</title>
		<link>http://www.myinkblog.com/coding-website-header-navigation/#comment-145758</link>
		<dc:creator>Marçau</dc:creator>
		<pubDate>Thu, 31 Mar 2011 08:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=501#comment-145758</guid>
		<description>Hi Andrew, 
Very well explained step by step tutorial. I&#039;m glad you say things in a way that even beginners can understand them.
I thought a bit the same as Rick in the first comment. Why put the slogan in a separate div if you already placed it well in Photoshop? I understand the operation for the logo to be clickable but then you don&#039;t need a &quot;home&quot; item in your navbar… Nevermind if it works well this way.
Anyway, what is on my mind is how does Internet Exploder deal with the transparency of the .png pictures? …and how to get sure it won&#039;t ruin your design? I was wondering if coding the whole header as an image map was to be the unique compulsory multi-browser solution</description>
		<content:encoded><![CDATA[<p>Hi Andrew,<br />
Very well explained step by step tutorial. I&#8217;m glad you say things in a way that even beginners can understand them.<br />
I thought a bit the same as Rick in the first comment. Why put the slogan in a separate div if you already placed it well in Photoshop? I understand the operation for the logo to be clickable but then you don&#8217;t need a &#8220;home&#8221; item in your navbar… Nevermind if it works well this way.<br />
Anyway, what is on my mind is how does Internet Exploder deal with the transparency of the .png pictures? …and how to get sure it won&#8217;t ruin your design? I was wondering if coding the whole header as an image map was to be the unique compulsory multi-browser solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tianyer</title>
		<link>http://www.myinkblog.com/coding-website-header-navigation/#comment-117365</link>
		<dc:creator>Tianyer</dc:creator>
		<pubDate>Sun, 20 Feb 2011 16:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.myinkblog.com/?p=501#comment-117365</guid>
		<description>Hello, i arrived to this blog although looking for some thing else, but to my joy i discovered this web site. Maintain performing what you&#039;re doing, its excellent.</description>
		<content:encoded><![CDATA[<p>Hello, i arrived to this blog although looking for some thing else, but to my joy i discovered this web site. Maintain performing what you&#8217;re doing, its excellent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://www.myinkblog.com/coding-website-header-navigation/#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/coding-website-header-navigation/#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/coding-website-header-navigation/#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/coding-website-header-navigation/#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" rel="nofollow">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/coding-website-header-navigation/#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.php

Let 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" rel="nofollow">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/coding-website-header-navigation/#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/coding-website-header-navigation/#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/coding-website-header-navigation/#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>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/8 queries in 0.006 seconds using disk: basic
Object Caching 571/572 objects using disk: basic

Served from: www.myinkblog.com @ 2012-02-09 08:49:53 -->
