<?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 Make a WordPress Blog</title>
	<atom:link href="http://normansheppard.com/how-to-make-a-wordpress-blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://normansheppard.com/how-to-make-a-wordpress-blog/</link>
	<description></description>
	<lastBuildDate>Thu, 02 Sep 2010 10:46:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Norman Sheppard</title>
		<link>http://normansheppard.com/how-to-make-a-wordpress-blog/comment-page-1/#comment-805</link>
		<dc:creator>Norman Sheppard</dc:creator>
		<pubDate>Mon, 09 Nov 2009 03:16:58 +0000</pubDate>
		<guid isPermaLink="false">http://normansheppard.com/?p=248#comment-805</guid>
		<description>Try this  
http://www.techdreams.org/blogging/fixing-wordpress-rss-issue-xml-parsing-error-xml-or-text-declaration-not-at-start-of-entity/2457-20090504</description>
		<content:encoded><![CDATA[<p>Try this<br />
<a href="http://www.techdreams.org/blogging/fixing-wordpress-rss-issue-xml-parsing-error-xml-or-text-declaration-not-at-start-of-entity/2457-20090504">http://www.techdreams.org/blogging/fixing-wordpress-rss-issue-xml-parsing-error-xml-or-text-declaration-not-at-start-of-entity/2457-20090504</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Najee Khan</title>
		<link>http://normansheppard.com/how-to-make-a-wordpress-blog/comment-page-1/#comment-803</link>
		<dc:creator>Najee Khan</dc:creator>
		<pubDate>Mon, 09 Nov 2009 01:55:28 +0000</pubDate>
		<guid isPermaLink="false">http://normansheppard.com/?p=248#comment-803</guid>
		<description>On my blog, when you click on the RSS icon, (top right), I get the following error message&quot;
------------
I read somewhere that if I remove blank lines from the top and bottom of PHP files, the error should go away. I downloaded a plug-in to do that but the problem is still there.

Any ideas?

Thanks.</description>
		<content:encoded><![CDATA[<p>On my blog, when you click on the RSS icon, (top right), I get the following error message&#8221;<br />
&#8212;&#8212;&#8212;&#8212;<br />
I read somewhere that if I remove blank lines from the top and bottom of PHP files, the error should go away. I downloaded a plug-in to do that but the problem is still there.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Norman Sheppard</title>
		<link>http://normansheppard.com/how-to-make-a-wordpress-blog/comment-page-1/#comment-749</link>
		<dc:creator>Norman Sheppard</dc:creator>
		<pubDate>Sun, 01 Nov 2009 16:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://normansheppard.com/?p=248#comment-749</guid>
		<description>Good question, probably worth an entire post but, here&#039;s a quick answer... look for the template file named style.css. This file has a lot of stuff and depending on what theme you are using font definitions could be in many different places. Usually, a global font-family and font-size is defined in the body style which will most likely be at the top of the stylesheet... body { font-family: Arial; font-size: 12px;} This is very simplified . Note, there is a short-form for font styles... body { font: 12px/14px Arial, Helvetica, sans-serif }  12px is the size, 14px is the line-height, Arial, Helvetica, sans-serif are the font-family in order of degradation, if the users computer doesn&#039;t have Arial use Helvetica, if there&#039;s no Helvetica, use whatever sans-serif is available. ALSO, font sizes can be defined in several ways, px, em, pt, and %.

For header, sidebar, and footer font definitions you will most likely have to look through the code of your template files to figure out what styles have been applied to these elements. For example, you might see &lt;* div id=&quot;header&quot; &gt;blablabla&lt;* / div &gt;, to change the font of blablabla you will now look in your stylesheet for #header { font: 12px Arial, Helvetica, sans-serif; }

This is really much too big a subject for a comments section, I&#039;ll do a post on this in the near future. In the meantime you could go here http://www.w3schools.com/css/ for a pretty good tutorial on CSS basics.</description>
		<content:encoded><![CDATA[<p>Good question, probably worth an entire post but, here&#8217;s a quick answer&#8230; look for the template file named style.css. This file has a lot of stuff and depending on what theme you are using font definitions could be in many different places. Usually, a global font-family and font-size is defined in the body style which will most likely be at the top of the stylesheet&#8230; body { font-family: Arial; font-size: 12px;} This is very simplified . Note, there is a short-form for font styles&#8230; body { font: 12px/14px Arial, Helvetica, sans-serif }  12px is the size, 14px is the line-height, Arial, Helvetica, sans-serif are the font-family in order of degradation, if the users computer doesn&#8217;t have Arial use Helvetica, if there&#8217;s no Helvetica, use whatever sans-serif is available. ALSO, font sizes can be defined in several ways, px, em, pt, and %.</p>
<p>For header, sidebar, and footer font definitions you will most likely have to look through the code of your template files to figure out what styles have been applied to these elements. For example, you might see < * div id="header" >blablabla< * / div >, to change the font of blablabla you will now look in your stylesheet for #header { font: 12px Arial, Helvetica, sans-serif; }</p>
<p>This is really much too big a subject for a comments section, I&#8217;ll do a post on this in the near future. In the meantime you could go here <a href="http://www.w3schools.com/css/">http://www.w3schools.com/css/</a> for a pretty good tutorial on CSS basics.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Najee Khan</title>
		<link>http://normansheppard.com/how-to-make-a-wordpress-blog/comment-page-1/#comment-748</link>
		<dc:creator>Najee Khan</dc:creator>
		<pubDate>Sun, 01 Nov 2009 14:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://normansheppard.com/?p=248#comment-748</guid>
		<description>How do you change the font style and size in WordPress?</description>
		<content:encoded><![CDATA[<p>How do you change the font style and size in WordPress?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
