<?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 for BlogSolid</title>
	<atom:link href="http://blogsolid.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogsolid.com</link>
	<description>Ideas for better blogging</description>
	<lastBuildDate>Wed, 03 Mar 2010 05:45:52 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on 15 Evergreen Writing Tips by Evergreen real estate</title>
		<link>http://blogsolid.com/ideas/2007/15-evergreen-writing-tips/comment-page-1/#comment-1262</link>
		<dc:creator>Evergreen real estate</dc:creator>
		<pubDate>Wed, 03 Mar 2010 05:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=21#comment-1262</guid>
		<description>Great tips and timeless!  I have to fight the battle against run on sentences all the time!</description>
		<content:encoded><![CDATA[<p>Great tips and timeless!  I have to fight the battle against run on sentences all the time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple CSS Blockquotes and Pullquotes by Man Cave Chronicle</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-1253</link>
		<dc:creator>Man Cave Chronicle</dc:creator>
		<pubDate>Wed, 24 Feb 2010 14:44:19 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-1253</guid>
		<description>Thanks for the css tips.  Will be incorporating both examples in my blog.  Also, thanks to the condensed version by qrayg.</description>
		<content:encoded><![CDATA[<p>Thanks for the css tips.  Will be incorporating both examples in my blog.  Also, thanks to the condensed version by qrayg.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple CSS Blockquotes and Pullquotes by Matt Lukan</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-1162</link>
		<dc:creator>Matt Lukan</dc:creator>
		<pubDate>Thu, 14 Jan 2010 08:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-1162</guid>
		<description>Height,
Unfortunately you made a few errors here:


	You should place the images in your template folder not the wp-admin folder. Usually the best place for images is &quot;&lt;strong&gt;wp-content&lt;/strong&gt;/templates/your-template-name/images(or other folder name where the images are)&quot; and than in the CSS reference a relative path: &lt;em&gt;{background-image: url (images/your-image.jpg)}&lt;/em&gt; without the first slash. If you place your images in wp-admin, they will be removed by the system at each system update
	If you want to keep them in the wp-admin anyway (what I would discourage), you should give a path starting from the folder in which your wp instalation resides, not from the top folder on your server. In your case, this would be the public_html, so your code should look like this: &lt;em&gt;{background-image: url (/wp-admin/images/your-image.jpg);} - the whole path goes into the brackets and you place url before the brackets.&lt;/em&gt;


I hope this will help.</description>
		<content:encoded><![CDATA[<p>Height,<br />
Unfortunately you made a few errors here:</p>
<p>	You should place the images in your template folder not the wp-admin folder. Usually the best place for images is &#8220;<strong>wp-content</strong>/templates/your-template-name/images(or other folder name where the images are)&#8221; and than in the CSS reference a relative path: <em>{background-image: url (images/your-image.jpg)}</em> without the first slash. If you place your images in wp-admin, they will be removed by the system at each system update<br />
	If you want to keep them in the wp-admin anyway (what I would discourage), you should give a path starting from the folder in which your wp instalation resides, not from the top folder on your server. In your case, this would be the public_html, so your code should look like this: <em>{background-image: url (/wp-admin/images/your-image.jpg);} &#8211; the whole path goes into the brackets and you place url before the brackets.</em></p>
<p>I hope this will help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple CSS Blockquotes and Pullquotes by Height</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-1159</link>
		<dc:creator>Height</dc:creator>
		<pubDate>Thu, 14 Jan 2010 02:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-1159</guid>
		<description>Hello. I am new to Wordpress. I am trying to use Blockquote. I saved the two quote images in the WP-Admin folder, and in the CSS I used the following lines:

.blockquote {background-image: /home/tallrorg/public_html/wp-admin(images/Open Quotes.jpg); background-repeat: no-repeat; background-position: left 5px; padding-left: 30px; font-style: italic;}
.blockquote span {background-image: /home/tallrorg/public_html/wp-admin(images/Close Quotes.jpg); background-repeat: no-repeat; background-position: right bottom; display: block; padding-right: 30px;}

For some reason though, it wasn&#039;t pulling the images on the site. I made the right HTML references also. Do you know why this is happening? What did I do wrong here?</description>
		<content:encoded><![CDATA[<p>Hello. I am new to Wordpress. I am trying to use Blockquote. I saved the two quote images in the WP-Admin folder, and in the CSS I used the following lines:</p>
<p>.blockquote {background-image: /home/tallrorg/public_html/wp-admin(images/Open Quotes.jpg); background-repeat: no-repeat; background-position: left 5px; padding-left: 30px; font-style: italic;}<br />
.blockquote span {background-image: /home/tallrorg/public_html/wp-admin(images/Close Quotes.jpg); background-repeat: no-repeat; background-position: right bottom; display: block; padding-right: 30px;}</p>
<p>For some reason though, it wasn&#8217;t pulling the images on the site. I made the right HTML references also. Do you know why this is happening? What did I do wrong here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blogsolid December 09 stats by Jasha</title>
		<link>http://blogsolid.com/ideas/2010/blogsolid-december-09-stats/comment-page-1/#comment-1144</link>
		<dc:creator>Jasha</dc:creator>
		<pubDate>Fri, 08 Jan 2010 23:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=281#comment-1144</guid>
		<description>Please consider that, ad sense for feed is something that will drive money into your wallet only when users read the feed reader. It means that they will open your feed only after they are notified of new articles. I doubt anyone use feeds to surf into past articles of a blog they are following.

In the last month you haven&#039;t been blogging much, as you said you were doing some restyling. Well, what i&#039;m trying to say is that i&#039;m sure ad sense will be a great source of money once you will start blogging regularly and maybe even improving feed readers.</description>
		<content:encoded><![CDATA[<p>Please consider that, ad sense for feed is something that will drive money into your wallet only when users read the feed reader. It means that they will open your feed only after they are notified of new articles. I doubt anyone use feeds to surf into past articles of a blog they are following.</p>
<p>In the last month you haven&#8217;t been blogging much, as you said you were doing some restyling. Well, what i&#8217;m trying to say is that i&#8217;m sure ad sense will be a great source of money once you will start blogging regularly and maybe even improving feed readers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Final Blogsolid design changes by Jasha</title>
		<link>http://blogsolid.com/ideas/2009/final-blogsolid-design-changes/comment-page-1/#comment-1143</link>
		<dc:creator>Jasha</dc:creator>
		<pubDate>Fri, 08 Jan 2010 23:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=270#comment-1143</guid>
		<description>i meant that a good title has enough space for each word. Here letters in each word a bit too close each others.</description>
		<content:encoded><![CDATA[<p>i meant that a good title has enough space for each word. Here letters in each word a bit too close each others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Final Blogsolid design changes by Matt Lukan</title>
		<link>http://blogsolid.com/ideas/2009/final-blogsolid-design-changes/comment-page-1/#comment-1142</link>
		<dc:creator>Matt Lukan</dc:creator>
		<pubDate>Fri, 08 Jan 2010 22:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=270#comment-1142</guid>
		<description>@ Paul B
The Solid Basics page is stil there: http://blogsolid.com/ideas/category/basics/ It is just the front page that is removed.</description>
		<content:encoded><![CDATA[<p>@ Paul B<br />
The Solid Basics page is stil there: <a href="http://blogsolid.com/ideas/category/basics/" rel="nofollow">http://blogsolid.com/ideas/category/basics/</a> It is just the front page that is removed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Guess Who&#039;s Back (After 12h Downtime) by Sü Smith</title>
		<link>http://blogsolid.com/ideas/2007/guess-whos-back-after-12h-downtime/comment-page-1/#comment-1098</link>
		<dc:creator>Sü Smith</dc:creator>
		<pubDate>Wed, 30 Dec 2009 23:03:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=37#comment-1098</guid>
		<description>A lot of people have been having server issues lately.  Even twitter was recently hacked! http://mashable.com/2009/12/17/not-good-twitter-hacked/

Rackspace went down too.</description>
		<content:encoded><![CDATA[<p>A lot of people have been having server issues lately.  Even twitter was recently hacked! <a href="http://mashable.com/2009/12/17/not-good-twitter-hacked/" rel="nofollow">http://mashable.com/2009/12/17.....er-hacked/</a></p>
<p>Rackspace went down too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The plan for Blogsolid by Sü Smith</title>
		<link>http://blogsolid.com/ideas/2009/the-plan-for-blogsolid/comment-page-1/#comment-1097</link>
		<dc:creator>Sü Smith</dc:creator>
		<pubDate>Wed, 30 Dec 2009 22:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=218#comment-1097</guid>
		<description>You&#039;re doing an awesome job here.  I am amazed that English is not your native language.  I&#039;m a native English speaker and still have issues as far as writing goes.  I look forward to watching your updates as things progress.</description>
		<content:encoded><![CDATA[<p>You&#8217;re doing an awesome job here.  I am amazed that English is not your native language.  I&#8217;m a native English speaker and still have issues as far as writing goes.  I look forward to watching your updates as things progress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Final Blogsolid design changes by Paul B</title>
		<link>http://blogsolid.com/ideas/2009/final-blogsolid-design-changes/comment-page-1/#comment-1096</link>
		<dc:creator>Paul B</dc:creator>
		<pubDate>Wed, 30 Dec 2009 22:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=270#comment-1096</guid>
		<description>Damn, some days I really need an editor.</description>
		<content:encoded><![CDATA[<p>Damn, some days I really need an editor.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
