<?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: Simple CSS Blockquotes and Pullquotes</title>
	<atom:link href="http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/</link>
	<description>Ideas for better blogging</description>
	<lastBuildDate>Fri, 17 Jun 2011 20:27:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Hosting Best</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-1408</link>
		<dc:creator>Hosting Best</dc:creator>
		<pubDate>Thu, 26 May 2011 09:42:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-1408</guid>
		<description>CSS amazes me more and more everyday! Those blockquotes look amazing</description>
		<content:encoded><![CDATA[<p>CSS amazes me more and more everyday! Those blockquotes look amazing</p>
]]></content:encoded>
	</item>
	<item>
		<title>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>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>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>By: Give Magazine Style Font to Yours Blogger Wordpress Blog Post &#124; Digji.com</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-177</link>
		<dc:creator>Give Magazine Style Font to Yours Blogger Wordpress Blog Post &#124; Digji.com</dc:creator>
		<pubDate>Wed, 02 Sep 2009 02:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-177</guid>
		<description>[...] Simple CSS Pullquotes [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple CSS Pullquotes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy J Cruz</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-161</link>
		<dc:creator>Andy J Cruz</dc:creator>
		<pubDate>Wed, 02 Sep 2009 00:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-161</guid>
		<description>Will this work on a WordPress blog? I have been trying to insert it but not working just yet.</description>
		<content:encoded><![CDATA[<p>Will this work on a WordPress blog? I have been trying to insert it but not working just yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 20 FREE Online CSS Resources to Quickly Enhance Your Website Design &#124; Tips for Easily Creating Websites</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-169</link>
		<dc:creator>20 FREE Online CSS Resources to Quickly Enhance Your Website Design &#124; Tips for Easily Creating Websites</dc:creator>
		<pubDate>Thu, 23 Jul 2009 01:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-169</guid>
		<description>[...] 15. Stylized CSS Blockquotes and Pullquotes [...]</description>
		<content:encoded><![CDATA[<p>[...] 15. Stylized CSS Blockquotes and Pullquotes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Resources for Styling Blockquotes &#124; News &#124; Tutorial Blog</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-2/#comment-162</link>
		<dc:creator>Resources for Styling Blockquotes &#124; News &#124; Tutorial Blog</dc:creator>
		<pubDate>Fri, 29 May 2009 21:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-162</guid>
		<description>[...] Simple CSS Blockquotes and Pullquotes [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple CSS Blockquotes and Pullquotes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tips Memperindah Tulisan Artikel Di Blog &#171; Erwinjie&#8217;s Blog</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-1/#comment-154</link>
		<dc:creator>Tips Memperindah Tulisan Artikel Di Blog &#171; Erwinjie&#8217;s Blog</dc:creator>
		<pubDate>Tue, 12 May 2009 06:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-154</guid>
		<description>[...] blockquote.left { width: 200px; margin: 5px 15px 5px 0; font-size: 1.4em; text-align: center; color: #abafb9; background: none; border: none !important; padding: 0 !important; float: left; } blockquote.right { width: 200px; margin: 5px 15px 5px 0; font-size: 1.4em; text-align: center; color: #abafb9; background: none; border: none !important; padding: 0 !important; float: right; } Cara untuk memasukan di setiap postingan hanya dengan menulis code ini di setiap dimana pullquote tsb akan di posisikan, &lt; blockquote class=”left”&gt;tulisan ada di sini&lt; /blockquote &gt;, jika ingin di posisi kanan tinggal ganti left ke right saja. Sumber dr sini [...]</description>
		<content:encoded><![CDATA[<p>[...] blockquote.left { width: 200px; margin: 5px 15px 5px 0; font-size: 1.4em; text-align: center; color: #abafb9; background: none; border: none !important; padding: 0 !important; float: left; } blockquote.right { width: 200px; margin: 5px 15px 5px 0; font-size: 1.4em; text-align: center; color: #abafb9; background: none; border: none !important; padding: 0 !important; float: right; } Cara untuk memasukan di setiap postingan hanya dengan menulis code ini di setiap dimana pullquote tsb akan di posisikan, &lt; blockquote class=”left”&gt;tulisan ada di sini&lt; /blockquote &gt;, jika ingin di posisi kanan tinggal ganti left ke right saja. Sumber dr sini [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to create pullquotes in CSS &#124; smashill - creative ways to capitalize on yourself</title>
		<link>http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/comment-page-1/#comment-156</link>
		<dc:creator>How to create pullquotes in CSS &#124; smashill - creative ways to capitalize on yourself</dc:creator>
		<pubDate>Mon, 06 Apr 2009 09:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogsolid.com/?p=47#comment-156</guid>
		<description>[...] Blogsolids article is a really simple way to implement blockquotes, and is the base I used to create the pullquotes on this site. [...]</description>
		<content:encoded><![CDATA[<p>[...] Blogsolids article is a really simple way to implement blockquotes, and is the base I used to create the pullquotes on this site. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

