<?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: Blockquote Blues!</title>
	<atom:link href="http://bloggingwithsuccess.net/better-blockquotes/feed/" rel="self" type="application/rss+xml" />
	<link>http://bloggingwithsuccess.net/better-blockquotes/</link>
	<description>Learn How To Be A Successful Blogger</description>
	<lastBuildDate>Mon, 10 Oct 2011 02:02:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-52342</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Mon, 12 Apr 2010 01:15:35 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-52342</guid>
		<description>Writing is good, don&#039;t underrate it --- lol  But I guess you haven&#039;t read this yet? 
&lt;a href=&quot;http://bloggingwithsuccess.net/no-excuse-for-no-favicon&quot; rel=&quot;nofollow&quot;&gt;No Excuse for No Favicon&lt;/a&gt; </description>
		<content:encoded><![CDATA[<p>Writing is good, don&#039;t underrate it &#8212; lol  But I guess you haven&#039;t read this yet?</p>
<p><a href="http://bloggingwithsuccess.net/no-excuse-for-no-favicon" rel="nofollow">No Excuse for No Favicon</a> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shubh -Regular Blog</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-52339</link>
		<dc:creator>Shubh -Regular Blog</dc:creator>
		<pubDate>Sun, 11 Apr 2010 16:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-52339</guid>
		<description>Nice idea. I would also like to spice up the block quotes on my site a bit but I find it difficult even to design a simple text favicon. All I can do is write. </description>
		<content:encoded><![CDATA[<p>Nice idea. I would also like to spice up the block quotes on my site a bit but I find it difficult even to design a simple text favicon. All I can do is write. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug C.</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-51107</link>
		<dc:creator>Doug C.</dc:creator>
		<pubDate>Sun, 21 Mar 2010 02:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-51107</guid>
		<description>You can see how this blockquote looks now on my article &lt;a href=&quot;http://dougdraws.com/branding-me/&quot; rel=&quot;nofollow&quot;&gt;Branding Me&lt;/a&gt;. Nice and clean. If you have any questions or need help with anything just reply here. </description>
		<content:encoded><![CDATA[<p>You can see how this blockquote looks now on my article <a href="http://dougdraws.com/branding-me/" rel="nofollow">Branding Me</a>. Nice and clean. If you have any questions or need help with anything just reply here. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug C.</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-50970</link>
		<dc:creator>Doug C.</dc:creator>
		<pubDate>Fri, 19 Mar 2010 21:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-50970</guid>
		<description>Unfortunately implementing this quote box into WordPress I discovered what seems to be a common issue with them - after publishing a post using their text editor WP will add paragraph tags around the images. This was causing the background image of the quote box to expand outward as it was doing on Blogger before my friend fixed it. 
 
Once again my coding friend came up with another fix for the bizarre WP paragraph problem. Just add the following lines of code to the blockquote CSS .... 
 
&lt;code&gt;div.quotetop { 
  width: 348px; 
  height: 55px; 
  background: url &lt;a href=&quot;http://(http://dougdraws.com/wp-content/themes/ColdStone/img/quotetop.png)&quot; rel=&quot;nofollow&quot;&gt;(http://dougdraws.com/wp-content/themes/ColdStone/img/quotetop.png)&lt;/a&gt; left top no-repeat; 
} 
 
div.quotebtm { 
  width: 348px; 
  height: 55px; 
  background: url &lt;a href=&quot;http://(http://dougdraws.com/wp-content/themes/ColdStone/img/quotebtm.png)&quot; rel=&quot;nofollow&quot;&gt;(http://dougdraws.com/wp-content/themes/ColdStone/img/quotebtm.png)&lt;/a&gt; left top no-repeat; 
}&lt;/code&gt; 
 
Then in the post text editor when you want to insert the quote box don&#039;t add the images like I did in the article. Instead just use two divs, like so ... 
 
&lt;div class=&quot;quotetop&quot;&gt;&lt;/div&gt; 
 
&lt;div class=&quot;quotebtm&quot;&gt;&lt;/div&gt;           
 
That will take care of WP&#039;s paragraph issue with your quote box and you won&#039;t have to install any plugins. </description>
		<content:encoded><![CDATA[<p>Unfortunately implementing this quote box into WordPress I discovered what seems to be a common issue with them &#8211; after publishing a post using their text editor WP will add paragraph tags around the images. This was causing the background image of the quote box to expand outward as it was doing on Blogger before my friend fixed it.</p>
<p>Once again my coding friend came up with another fix for the bizarre WP paragraph problem. Just add the following lines of code to the blockquote CSS &#8230;.</p>
<p>&lt;code&gt;div.quotetop {</p>
<p>  width: 348px;</p>
<p>  height: 55px;</p>
<p>  background: url <a href="http://(http://dougdraws.com/wp-content/themes/ColdStone/img/quotetop.png)" rel="nofollow">(</a><a href="http://dougdraws.com/wp-content/themes/ColdStone/img/quotetop.png" rel="nofollow">http://dougdraws.com/wp-content/themes/ColdStone/img/quotetop.png</a>) left top no-repeat;</p>
<p>}</p>
<p>div.quotebtm {</p>
<p>  width: 348px;</p>
<p>  height: 55px;</p>
<p>  background: url <a href="http://(http://dougdraws.com/wp-content/themes/ColdStone/img/quotebtm.png)" rel="nofollow">(</a><a href="http://dougdraws.com/wp-content/themes/ColdStone/img/quotebtm.png" rel="nofollow">http://dougdraws.com/wp-content/themes/ColdStone/img/quotebtm.png</a>) left top no-repeat;</p>
<p>}&lt;/code&gt;</p>
<p>Then in the post text editor when you want to insert the quote box don&#039;t add the images like I did in the article. Instead just use two divs, like so &#8230;</p>
<p>&lt;div class=&quot;quotetop&quot;&gt;&lt;/div&gt;</p>
<p>&lt;div class=&quot;quotebtm&quot;&gt;&lt;/div&gt;          </p>
<p>That will take care of WP&#039;s paragraph issue with your quote box and you won&#039;t have to install any plugins. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-49922</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Mon, 15 Mar 2010 06:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-49922</guid>
		<description>Hi &#039;canada consult&#039;. Doug is having trouble responding with the Chrome browser. Neither of us really use Facebook. Doug&#039;s information is for websites where you can control the styling and html. If you find anything in the Facebook help files let us know! </description>
		<content:encoded><![CDATA[<p>Hi &#039;canada consult&#039;. Doug is having trouble responding with the Chrome browser. Neither of us really use Facebook. Doug&#039;s information is for websites where you can control the styling and html. If you find anything in the Facebook help files let us know! </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Canada consult</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-48276</link>
		<dc:creator>Canada consult</dc:creator>
		<pubDate>Tue, 09 Mar 2010 15:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-48276</guid>
		<description>I it possible to use &quot;blockquote&quot; and &quot;size&quot; stuff on facebook notes? </description>
		<content:encoded><![CDATA[<p>I it possible to use &quot;blockquote&quot; and &quot;size&quot; stuff on facebook notes? </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: varun</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-48171</link>
		<dc:creator>varun</dc:creator>
		<pubDate>Mon, 08 Mar 2010 20:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-48171</guid>
		<description>Awesome i have  tried one in my blog.But didn&#039;t come as thought but better than nothing </description>
		<content:encoded><![CDATA[<p>Awesome i have  tried one in my blog.But didn&#039;t come as thought but better than nothing </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricky</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-47319</link>
		<dc:creator>Ricky</dc:creator>
		<pubDate>Thu, 04 Mar 2010 22:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-47319</guid>
		<description>Wow. Looks promising. It is a rough idea how people can be creative with their design. Thumbs up to your tutorial. I may try it out with my new wordpress theme simplegant. Going to release the new version soon. </description>
		<content:encoded><![CDATA[<p>Wow. Looks promising. It is a rough idea how people can be creative with their design. Thumbs up to your tutorial. I may try it out with my new wordpress theme simplegant. Going to release the new version soon. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pubudu Kodikara</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-47290</link>
		<dc:creator>Pubudu Kodikara</dc:creator>
		<pubDate>Thu, 04 Mar 2010 13:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-47290</guid>
		<description>Great tutorial mate! :D Thanks a lot... now i can make my own block-quotes :D </description>
		<content:encoded><![CDATA[<p>Great tutorial mate! <img src='http://cdn.bloggingwithsuccess.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Thanks a lot&#8230; now i can make my own block-quotes <img src='http://cdn.bloggingwithsuccess.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Cloud</title>
		<link>http://bloggingwithsuccess.net/better-blockquotes/comment-page-1/#comment-47202</link>
		<dc:creator>Doug Cloud</dc:creator>
		<pubDate>Thu, 04 Mar 2010 01:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7009#comment-47202</guid>
		<description>Pulkit, that&#039;s great. I&#039;d love to see what you come up with. </description>
		<content:encoded><![CDATA[<p>Pulkit, that&#039;s great. I&#039;d love to see what you come up with. </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 19/34 queries in 0.029 seconds using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: cdn.bloggingwithsuccess.net

Served from: bloggingwithsuccess.net @ 2012-05-21 13:38:00 -->
