<?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: How to get rid of the blog title and description in the Wordpress header</title>
	<atom:link href="http://carolynecooper.com/web-dev/how-to-get-rid-of-the-blog-title-and-description-in-the-wordpress-header/feed" rel="self" type="application/rss+xml" />
	<link>http://carolynecooper.com/do/web-dev/how-to-get-rid-of-the-blog-title-and-description-in-the-wordpress-header</link>
	<description>Simply the Stuff To Grow Your Business Now</description>
	<lastBuildDate>Wed, 28 Jul 2010 12:35:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: carolyn</title>
		<link>http://carolynecooper.com/do/web-dev/how-to-get-rid-of-the-blog-title-and-description-in-the-wordpress-header/comment-page-1#comment-478</link>
		<dc:creator>carolyn</dc:creator>
		<pubDate>Fri, 02 Jul 2010 01:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://carolynecooper.com/?p=428#comment-478</guid>
		<description>Sara, Thanks for bringing this lovely theme to my attention. I&#039;ll definitely add it to my list to recommend.

This theme, however, will require either editing the stylesheet or using a small trick in the header.php code because it requires the HTML styling of the header H1 and .description class to properly align the background graphic. The easiest way is to trick the header.php file. Here&#039;s how.

In the your theme header.php file, find the area that looks like this:

&lt;div class=&quot;header&quot;&gt;
&lt;div class=&quot;subscribe&quot;&gt;&lt;a href=&quot;&lt;?php bloginfo(&#039;rss2_url&#039;); ?&gt;&quot; title=&quot;&lt;?php _e(&#039;Add this blog to any reader&#039;); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo(&#039;stylesheet_directory&#039;); ?&gt;/images/rss.gif&quot; alt=&quot;RSS&quot; /&gt;&lt;/a&gt;&lt;/div&gt; 
 &lt;h1&gt;   &#160; &lt;!--&lt;a href=&quot;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&quot;&gt;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/a&gt; --&gt;&lt;/h1&gt;
&lt;div class=&quot;description&quot;&gt; &#160;&lt;!--&lt;?php bloginfo(&#039;description&#039;); ?&gt;--&gt;&lt;/div&gt; 

&lt;!-- Comment this section to turn off the header menu bar or uncomment to use --&gt;

You now what to eliminate the code that inputs the bloginfo(&#039;name&#039;) and bloginfo(&#039;description&#039;) and replace it with the HMTL code for a non-breaking space which is &nbsp;.

The code you want to change looks like this:
 &lt;h1&gt; &lt;a href=&quot;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&quot;&gt;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/a&gt; &lt;/h1&gt;
&lt;div class=&quot;description&quot;&gt; &#160;&lt;?php bloginfo(&#039;description&#039;); ?&gt;&lt;/div&gt; 


So the short, permanent solution will look like this:

 &lt;h1&gt;   &nbsp; &lt;/h1&gt;
&lt;div class=&quot;description&quot;&gt; &nbsp; &lt;/div&gt; 

OR you can just comment out the php code incase you want to use it later, by doing this:

 &lt;h1&gt;   &nbsp; &lt;!--&lt;a href=&quot;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&quot;&gt; &lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/a&gt; --&gt; &lt;/h1&gt;
&lt;div class=&quot;description&quot;&gt; &nbsp; &lt;!--&lt;?php bloginfo(&#039;description&#039;); ?&gt;--&gt; &lt;/div&gt;

I hope that clears things up for you. And thanks for stopping by.</description>
		<content:encoded><![CDATA[<p>Sara, Thanks for bringing this lovely theme to my attention. I&#8217;ll definitely add it to my list to recommend.</p>
<p>This theme, however, will require either editing the stylesheet or using a small trick in the header.php code because it requires the HTML styling of the header H1 and .description class to properly align the background graphic. The easiest way is to trick the header.php file. Here&#8217;s how.</p>
<p>In the your theme header.php file, find the area that looks like this:</p>
<p>&lt;div class=&#8221;header&#8221;&gt;<br />
&lt;div class=&#8221;subscribe&#8221;&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;rss2_url&#8217;); ?&gt;&#8221; title=&#8221;&lt;?php _e(&#8216;Add this blog to any reader&#8217;); ?&gt;&#8221;&gt;&lt;img src=&#8221;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/images/rss.gif&#8221; alt=&#8221;RSS&#8221; /&gt;&lt;/a&gt;&lt;/div&gt;<br />
 &lt;h1&gt;   &nbsp; &lt;!&#8211;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt; &#8211;&gt;&lt;/h1&gt;<br />
&lt;div class=&#8221;description&#8221;&gt; &nbsp;&lt;!&#8211;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&#8211;&gt;&lt;/div&gt; </p>
<p><!-- Comment this section to turn off the header menu bar or uncomment to use --></p>
<p>You now what to eliminate the code that inputs the bloginfo(&#8216;name&#8217;) and bloginfo(&#8216;description&#8217;) and replace it with the HMTL code for a non-breaking space which is &amp;nbsp;.</p>
<p>The code you want to change looks like this:<br />
 &lt;h1&gt; &lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt; &lt;/h1&gt;<br />
&lt;div class=&#8221;description&#8221;&gt; &nbsp;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&lt;/div&gt; </p>
<p>So the short, permanent solution will look like this:</p>
<p> &lt;h1&gt;   &amp;nbsp; &lt;/h1&gt;<br />
&lt;div class=&#8221;description&#8221;&gt; &amp;nbsp; &lt;/div&gt; </p>
<p>OR you can just comment out the php code incase you want to use it later, by doing this:</p>
<p> &lt;h1&gt;   &amp;nbsp; &lt;!&#8211;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221;&gt; &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt; &#8211;&gt; &lt;/h1&gt;<br />
&lt;div class=&#8221;description&#8221;&gt; &amp;nbsp; &lt;!&#8211;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&#8211;&gt; &lt;/div&gt;</p>
<p>I hope that clears things up for you. And thanks for stopping by.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bewildered</title>
		<link>http://carolynecooper.com/do/web-dev/how-to-get-rid-of-the-blog-title-and-description-in-the-wordpress-header/comment-page-1#comment-476</link>
		<dc:creator>bewildered</dc:creator>
		<pubDate>Thu, 01 Jul 2010 23:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://carolynecooper.com/?p=428#comment-476</guid>
		<description>Unfortunately, this did nothing for me either. Check it out with the theme anonymous elegance. I tried altering the css as well. No luck! Thanks anyways, hopefully this works with other themes.</description>
		<content:encoded><![CDATA[<p>Unfortunately, this did nothing for me either. Check it out with the theme anonymous elegance. I tried altering the css as well. No luck! Thanks anyways, hopefully this works with other themes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soopermecksican</title>
		<link>http://carolynecooper.com/do/web-dev/how-to-get-rid-of-the-blog-title-and-description-in-the-wordpress-header/comment-page-1#comment-439</link>
		<dc:creator>soopermecksican</dc:creator>
		<pubDate>Sun, 18 Apr 2010 04:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://carolynecooper.com/?p=428#comment-439</guid>
		<description>this really helped me out!! thanks for the well written explanation!</description>
		<content:encoded><![CDATA[<p>this really helped me out!! thanks for the well written explanation!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Val</title>
		<link>http://carolynecooper.com/do/web-dev/how-to-get-rid-of-the-blog-title-and-description-in-the-wordpress-header/comment-page-1#comment-411</link>
		<dc:creator>Val</dc:creator>
		<pubDate>Tue, 18 Aug 2009 04:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://carolynecooper.com/?p=428#comment-411</guid>
		<description>Hello. I was thrilled to see this advice. I tried it. Nothing changed. I also see the following code and wonder if that needs to be altered.

                &lt;code&gt;
                      &lt;!-- Begin navigation --&gt;
        
                        &lt;a href=&quot;/&quot;&gt;Welcome&lt;/a&amp;g

             &lt;!--End navigation --&gt;
&lt;/code&gt;
Thanks.Val</description>
		<content:encoded><![CDATA[<p>Hello. I was thrilled to see this advice. I tried it. Nothing changed. I also see the following code and wonder if that needs to be altered.</p>
<p>                <code><br />
                      &lt;!-- Begin navigation --&gt;</p>
<p>                        &lt;a href=&quot;/"&gt;Welcome&lt;/a&#038;g</p>
<p>             &lt;!--End navigation --&gt;<br />
</code><br />
Thanks.Val</p>
]]></content:encoded>
	</item>
</channel>
</rss>
