<?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: Removing the Headline Area from Thesis Theme</title>
	<atom:link href="http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/</link>
	<description>Website creation, Social Media, and Community Development</description>
	<lastBuildDate>Thu, 22 Jul 2010 20:28:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Ashwin</title>
		<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/comment-page-1/#comment-77</link>
		<dc:creator>Ashwin</dc:creator>
		<pubDate>Tue, 25 May 2010 11:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeremylindh.com/?p=466#comment-77</guid>
		<description>Instead of using:

.custom #post-6 .headline_area

assign a CSS Class to the page and use as:

.custom .classname .headline_area

It&#039;s much cleaner!</description>
		<content:encoded><![CDATA[<p>Instead of using:</p>
<p>.custom #post-6 .headline_area</p>
<p>assign a CSS Class to the page and use as:</p>
<p>.custom .classname .headline_area</p>
<p>It&#8217;s much cleaner!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/comment-page-1/#comment-64</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 22 Mar 2010 23:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeremylindh.com/?p=466#comment-64</guid>
		<description>Jeremy - 

Excellent solution.  I was previously hiding the H2 element and that messed up every other H2 on the page.  This was a much better solution.  Thank You for taking the time to share it.</description>
		<content:encoded><![CDATA[<p>Jeremy &#8211; </p>
<p>Excellent solution.  I was previously hiding the H2 element and that messed up every other H2 on the page.  This was a much better solution.  Thank You for taking the time to share it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/comment-page-1/#comment-59</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Tue, 09 Mar 2010 18:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeremylindh.com/?p=466#comment-59</guid>
		<description>Thanks for the comment Michael.  Do you have Firebug for Firefox?  That&#039;s a great way to pick apart the code and see what lines you&#039;ll need for your specific pages.

For reference, I used this code to remove the headline from the home page at http://www.shellyscakes.net/   If you run Firebug, you can see that &quot;post-6&quot; is the ID being given to that headline area.

It looks like your welcome page is post 41, so I would try using
.custom #post-41 .headline_area { position:absolute; top:-1500px; left:-1500px; }</description>
		<content:encoded><![CDATA[<p>Thanks for the comment Michael.  Do you have Firebug for Firefox?  That&#8217;s a great way to pick apart the code and see what lines you&#8217;ll need for your specific pages.</p>
<p>For reference, I used this code to remove the headline from the home page at <a href="http://www.shellyscakes.net/" rel="nofollow">http://www.shellyscakes.net/</a>   If you run Firebug, you can see that &#8220;post-6&#8243; is the ID being given to that headline area.</p>
<p>It looks like your welcome page is post 41, so I would try using<br />
.custom #post-41 .headline_area { position:absolute; top:-1500px; left:-1500px; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael K. Jensen</title>
		<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/comment-page-1/#comment-57</link>
		<dc:creator>Michael K. Jensen</dc:creator>
		<pubDate>Sun, 28 Feb 2010 08:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeremylindh.com/?p=466#comment-57</guid>
		<description>Hi Jeremy.

The following code are not working for me:
.custom #post-6 .headline_area { position:absolute; top:-1500px; left:-1500px; }

I have a page (Welcome) as a substitut for the Home page. I have tried post number (that seems to be 41), Welcome and Home, but that will not remove my header on my front page (Welcome).
Do you have any suggestions?</description>
		<content:encoded><![CDATA[<p>Hi Jeremy.</p>
<p>The following code are not working for me:<br />
.custom #post-6 .headline_area { position:absolute; top:-1500px; left:-1500px; }</p>
<p>I have a page (Welcome) as a substitut for the Home page. I have tried post number (that seems to be 41), Welcome and Home, but that will not remove my header on my front page (Welcome).<br />
Do you have any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/comment-page-1/#comment-55</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Wed, 03 Feb 2010 22:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeremylindh.com/?p=466#comment-55</guid>
		<description>From an SEO standpoint, you would generally want to retain the headline text in your actual code.  Google adds extra weight to h2 and h3 tags, and your page titles are generally keywords that you&#039;d want pretty heavily weighted.    You could use display: none, but you&#039;d lose that extra SEO benefit.</description>
		<content:encoded><![CDATA[<p>From an SEO standpoint, you would generally want to retain the headline text in your actual code.  Google adds extra weight to h2 and h3 tags, and your page titles are generally keywords that you&#8217;d want pretty heavily weighted.    You could use display: none, but you&#8217;d lose that extra SEO benefit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hakan</title>
		<link>http://www.jeremylindh.com/remove-the-headline-area-from-thesis-theme/comment-page-1/#comment-54</link>
		<dc:creator>hakan</dc:creator>
		<pubDate>Wed, 03 Feb 2010 08:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeremylindh.com/?p=466#comment-54</guid>
		<description>Why not just say display: none   ?</description>
		<content:encoded><![CDATA[<p>Why not just say display: none   ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
