<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1-alpha-2539" -->
<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"
		>
	<channel>
		<title>WordPress.com Forums &#187; Tag: spacing - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/spacing</link>
		<description>WordPress.com Forums &#187; Tag: spacing - Recent Posts</description>
		<language>en</language>
		<pubDate>Wed, 19 Jun 2013 06:49:38 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/spacing" rel="self" type="application/rss+xml" />

		<item>
			<title>ifdreamswereforsale on "Image and text spacing?"</title>
			<link>http://en.forums.wordpress.com/topic/image-and-text-spacing#post-1298947</link>
			<pubDate>Mon, 10 Jun 2013 04:01:56 +0000</pubDate>
			<dc:creator>ifdreamswereforsale</dc:creator>
			<guid isPermaLink="false">1298947@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I was trying that and not seeing any results but now I see I have to put in a bigger number for the veritcal spacing size.</p>
<p>Thanks!
</p>
]]></description>
					</item>
		<item>
			<title>supernu on "Image and text spacing?"</title>
			<link>http://en.forums.wordpress.com/topic/image-and-text-spacing#post-1298934</link>
			<pubDate>Mon, 10 Jun 2013 03:36:45 +0000</pubDate>
			<dc:creator>supernu</dc:creator>
			<guid isPermaLink="false">1298934@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You can set the space as you want, see <a href="http://oi39.tinypic.com/anneqd.jpg">here</a>.</p>
<p>Click the image in question, click ADVANCED SETTINGS &#62; follow image instructions</p>
<p>Make sure you scroll to the bottom and click UPDATE when you done.
</p>
]]></description>
					</item>
		<item>
			<title>ifdreamswereforsale on "Image and text spacing?"</title>
			<link>http://en.forums.wordpress.com/topic/image-and-text-spacing#post-1298931</link>
			<pubDate>Mon, 10 Jun 2013 03:31:39 +0000</pubDate>
			<dc:creator>ifdreamswereforsale</dc:creator>
			<guid isPermaLink="false">1298931@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi.</p>
<p>I have a question about images and the text surrounding an image in a post. I would like to space my photos and text more than the default spacing. At the moment the text is always close to my photos and I would like bigger spacing. I understand hitting enter doesn't achieve this.</p>
<p>Is there a code or way of spacing the text away from the photos? My blog is wearingthetrousers.wordpress.com</p>
<p>Help much apprectiated.
</p>
]]></description>
					</item>
		<item>
			<title>luckpotionsblog on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1286771</link>
			<pubDate>Fri, 31 May 2013 03:23:24 +0000</pubDate>
			<dc:creator>luckpotionsblog</dc:creator>
			<guid isPermaLink="false">1286771@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1286751</link>
			<pubDate>Fri, 31 May 2013 03:05:58 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1286751@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome.</p>
<p>I'm seeing you set it to 0.1em. That's almost nothing, so you might as well set it to zero:<br />
<pre><code>.site-header {
    margin-bottom: 0;
}</code></pre>
<p>If you want to move things even higher, you can turn it to this:<br />
<pre><code>.site-header {
    margin-bottom: 0;
    padding-bottom: 1.5em;
}</code></pre>
<p>(1.5 is the original value: change it to adjust the space.)</p>
<p>Now, some remarks about fonts and inline CSS:</p>
<p>a) Browsers normally display a font only if it's installed in your computer (except if you use Typekit, which embeds the font in your blog). So the fact that you specified Myriad Pro in the Text editor doesn't mean your visitors will see Myriad Pro: it's not a common font, so most visitors will see a different font (for example, I'm seeing Times in Safari and Bookman Old Style in Firefox, because that's what I've told my browsers to display when a site specifies a font I don't have).<br />
Your options are:<br />
1. Use one of the standard fonts that are installed in practically all computers; see here:<br />
<a href="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html" rel="nofollow">http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html</a><br />
2. Use one of the Typekit fonts you can see in Appearance &#62; Custom Design (or Customizer) &#62; Fonts.<br />
3. Setup a separate Typekit account, setup a kit for your blog, etc etc; then and only then you can use Myriad Pro.</p>
<p>b) You used this in the Text editor, for each and every paragraph:<br />
<code>&lt;span style=&quot;font-family:myriad pro;&quot;&gt;TEXT&lt;/span&gt;</code><br />
First, the span tag is used to change characters, words or phrases that are <em>part</em> of a paragraph. If you wanted to change the whole paragraph, you'd write:<br />
<code>&lt;p style=&quot;WHATEVER&quot;&gt;COMPLETE PARAGRAPH HERE&lt;/p&gt;</code><br />
But since you wanted to change the whole post, applying the same change to each paragraph would be redundant. You'd simply write this:<br />
<pre><code>&lt;div style=&quot;WHATEVER&quot;&gt;

COMPLETE CONTENT HERE

&lt;/div&gt;</code></pre>
<p>c) But you'd do this if you didn't have the Custom Design upgrade. Since you have the upgrade, there's no point adding such inline CSS.</p>
<p>So, remove the span tags from the Text editor, and add this in the CSS editor (except if you decide to use Typekit fonts):<br />
<pre><code>.wf-active body {
    font-family: Arial;
}</code></pre>
<p>This should take care of the widget texts too. I'm suggesting Arial, as I think that out of the few standard fonts it's the one that comes closest to Myriad Pro.</p>
<p>To turn the color of the widget texts into that of the main content, add this:<br />
<pre><code>.site-main .widget-area {
color: #574D4D;
}</code></pre>
<p>And I'm confused about the line spacing. You've added this:<br />
<pre><code>p {
    line-height: 1.5em;
}</code></pre>
<p>This applies to all regular text - main and widget alike. Do you mean you want a different line spacing for the widgets?</p>
<p>As for widening the sidebar, you moved it from right to left. Is this final?
</p>
]]></description>
					</item>
		<item>
			<title>luckpotionsblog on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1286527</link>
			<pubDate>Thu, 30 May 2013 22:47:14 +0000</pubDate>
			<dc:creator>luckpotionsblog</dc:creator>
			<guid isPermaLink="false">1286527@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The code worked great to reduce the banner space. Thanks!
</p>
]]></description>
					</item>
		<item>
			<title>luckpotionsblog on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1285731</link>
			<pubDate>Thu, 30 May 2013 15:22:08 +0000</pubDate>
			<dc:creator>luckpotionsblog</dc:creator>
			<guid isPermaLink="false">1285731@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I do want to change the font family, specifically to myriad pro, just to match the rest of the blog. And I also want to change the color and spacing if possible. I've added some text to show what it looks like now. Thanks for all the help :)
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1285228</link>
			<pubDate>Thu, 30 May 2013 03:28:19 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1285228@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>So you don't want to change the font <em>family</em>, you want to change the line spacing and the color. Add some text to the widget you have already added so I can see it and modify it, and then I'll work out #2 as well.
</p>
]]></description>
					</item>
		<item>
			<title>luckpotionsblog on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1285217</link>
			<pubDate>Thu, 30 May 2013 03:19:58 +0000</pubDate>
			<dc:creator>luckpotionsblog</dc:creator>
			<guid isPermaLink="false">1285217@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you, I'll try that out.<br />
The only widgets I'm planning on adding are text, specifically html for images. I wanted to add actual text to the text widget, but I'm not a fan of the font they provide. The spacing between lines are too wide and it's gray.
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1285182</link>
			<pubDate>Thu, 30 May 2013 02:24:02 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1285182@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>1. Add this in the CSS editor:<br />
<pre><code>.site-header {
    margin-bottom: 4.5em;
}</code></pre>
<p>Decrease the number to decrease the space.</p>
<p>2-4 are also possible. They'll be easier to answer after you add all the widgets you want (so we can see how they behave when you widen the sidebar), and after you publish more posts (so we can see infinite scrolling in action). Re 3, change the font of what exactly? and change it to which font?
</p>
]]></description>
					</item>
		<item>
			<title>luckpotionsblog on "Adding CSS to Truly Minimal theme"</title>
			<link>http://en.forums.wordpress.com/topic/adding-css-to-truly-minimal-theme#post-1285151</link>
			<pubDate>Thu, 30 May 2013 01:31:26 +0000</pubDate>
			<dc:creator>luckpotionsblog</dc:creator>
			<guid isPermaLink="false">1285151@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello, I hope I'm posting in the right place. I want to see if the changes I want to make to my blog are possible via CSS. </p>
<p>1 : Is there any way to make the entries higher, so that the first post is closer to the menu? (I removed the banner, but it wasn't high enough)</p>
<p>2 : Is there any way to make the sidebar wider? </p>
<p>3 : Is there anyway to change the font on the sidebar?</p>
<p>4 : This is a stretch, but is there any way to undo the endless scrolling? </p>
<p>Thank you!
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Editing Top Margin"</title>
			<link>http://en.forums.wordpress.com/topic/editing-top-margin#post-1282768</link>
			<pubDate>Tue, 28 May 2013 15:41:13 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1282768@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>On the home page of the Further theme, the featured content area has an explicit height set. You can get rid of that height setting by adding this:</p>
<pre><code>#featured-content .entry-wrap {
	height: auto;
}</code></pre>
<p>You'll see some strange background stuff appear if you do that, so you can override that and reset the background color to your background color like this:</p>
<pre><code>#featured-content {
	background: #01576f;
}</code></pre>
<p>Last, each featured post box has some padding at the bottom of one of it's inner elements (class="entry-summary") and you can remove that padding like this:</p>
<pre><code>#featured-content .entry-summary {
	padding-bottom: 0;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Editing Top Margin"</title>
			<link>http://en.forums.wordpress.com/topic/editing-top-margin#post-1277077</link>
			<pubDate>Thu, 23 May 2013 15:36:06 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1277077@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hmmm, the CSS in this theme is a little complex. What I gave works on the pages, but not the home page.</p>
<p>Let me work on it a bit.
</p>
]]></description>
					</item>
		<item>
			<title>deepriversprings on "Editing Top Margin"</title>
			<link>http://en.forums.wordpress.com/topic/editing-top-margin#post-1276910</link>
			<pubDate>Thu, 23 May 2013 14:02:25 +0000</pubDate>
			<dc:creator>deepriversprings</dc:creator>
			<guid isPermaLink="false">1276910@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>please tell us where I should put this code? because I try to put this on top of the CSS code and its not working... I need your Help...</p>
<p>Thank you...
</p>
]]></description>
					</item>
		<item>
			<title>deepriversprings on "Editing Top Margin"</title>
			<link>http://en.forums.wordpress.com/topic/editing-top-margin#post-1276781</link>
			<pubDate>Thu, 23 May 2013 10:28:32 +0000</pubDate>
			<dc:creator>deepriversprings</dc:creator>
			<guid isPermaLink="false">1276781@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Unfortunately this one not worked... I paste this one to the CSS and nothing changes. if possible can you tell me from what number on the CSS I should Paste this one? so that there will be no space between under the Feature Post and Primary Contents &#38; the Contents-sidebar</p>
<p>Please Please I need Help....</p>
<p>The blog I need help with is deepriverspringsestates.com
</p>
]]></description>
					</item>
		<item>
			<title>thesacredpath on "Editing Top Margin"</title>
			<link>http://en.forums.wordpress.com/topic/editing-top-margin#post-1276585</link>
			<pubDate>Thu, 23 May 2013 05:16:40 +0000</pubDate>
			<dc:creator>thesacredpath</dc:creator>
			<guid isPermaLink="false">1276585@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Give this a try and see if it does what you want.</p>
<pre><code>#primary {
padding-top: 0;
}

#content-sidebar {
padding-top: 0;
margin-top: -2px;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>deepriversprings on "Editing Top Margin"</title>
			<link>http://en.forums.wordpress.com/topic/editing-top-margin#post-1276516</link>
			<pubDate>Thu, 23 May 2013 03:06:07 +0000</pubDate>
			<dc:creator>deepriversprings</dc:creator>
			<guid isPermaLink="false">1276516@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I am currently using the "Further" theme and I wanted to know if there is a way to How can I edit the top margin for the Article Column and for the top margin on the right side bar so that the contents like vidoes, photos etc. meet the turquoise color on the top before the feature post. Can anyone help?</p>
<p>The blog I need help with is deepriverspringsestates.com
</p>
]]></description>
					</item>
		<item>
			<title>theappositeak on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1275284</link>
			<pubDate>Wed, 22 May 2013 14:18:08 +0000</pubDate>
			<dc:creator>theappositeak</dc:creator>
			<guid isPermaLink="false">1275284@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you again @justpi!
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1274746</link>
			<pubDate>Wed, 22 May 2013 00:13:11 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1274746@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Yes it's possible. One way to do it is the display-posts shortcode:<br />
<a href="http://en.support.wordpress.com/display-posts-shortcode/" rel="nofollow">http://en.support.wordpress.com/display-posts-shortcode/</a></p>
<p>PS This has nothing to do with CSS editing or with the title of this thread, so yes, better post each different question as a separate topic, for the sake of other users who might look for the same question.
</p>
]]></description>
					</item>
		<item>
			<title>theappositeak on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1274689</link>
			<pubDate>Tue, 21 May 2013 23:10:11 +0000</pubDate>
			<dc:creator>theappositeak</dc:creator>
			<guid isPermaLink="false">1274689@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I was going to post another topic for this but I thought that since you already know what I'm doing I'd ask you first. </p>
<p>So now that each post is on a different page, is it possible to add a page where I can click and see all the posts as thumbnails?</p>
<p>Thank you
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273968</link>
			<pubDate>Tue, 21 May 2013 17:12:24 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1273968@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Yup!
</p>
]]></description>
					</item>
		<item>
			<title>theappositeak on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273841</link>
			<pubDate>Tue, 21 May 2013 16:05:48 +0000</pubDate>
			<dc:creator>theappositeak</dc:creator>
			<guid isPermaLink="false">1273841@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>so add </p>
<p>padding-bottom: 0;</p>
<p> to</p>
<p>.entry-title {<br />
    padding-right: 0;<br />
    text-align: center;<br />
}</p>
<p>to make it</p>
<p>.entry-title {<br />
    padding-right: 0;<br />
    text-align: center;<br />
    padding-bottom: 0;<br />
}</p>
<p>?</p>
<p>sorry I don't really understand coding :/ </p>
<p>thank you again!
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273572</link>
			<pubDate>Tue, 21 May 2013 13:16:03 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1273572@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome!</p>
<p>Add this rule to my previous suggestion:<br />
<code>padding-bottom: 0;</code><br />
And add this as well:<br />
<pre><code>.entry-content, .entry-summary {
    padding-top: 0.6em;
}</code></pre>
<p>Change the value to adjust.
</p>
]]></description>
					</item>
		<item>
			<title>theappositeak on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273562</link>
			<pubDate>Tue, 21 May 2013 13:05:27 +0000</pubDate>
			<dc:creator>theappositeak</dc:creator>
			<guid isPermaLink="false">1273562@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you Thank you Thank you!<br />
I have been trying to find this code for two days!!!!<br />
THANK YOU!!!</p>
<p>Every post will have an image before any text, is there any chance I can decrease the space between the post title and the image of the post?
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273556</link>
			<pubDate>Tue, 21 May 2013 12:57:34 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1273556@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome.</p>
<p>To center the post titles, add this:<br />
<pre><code>.entry-title {
    padding-right: 0;
    text-align: center;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>theappositeak on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273546</link>
			<pubDate>Tue, 21 May 2013 12:42:52 +0000</pubDate>
			<dc:creator>theappositeak</dc:creator>
			<guid isPermaLink="false">1273546@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thank you so much @justpi!</p>
<p>Just another question,<br />
Can I center the post titles?</p>
<p>Thank you
</p>
]]></description>
					</item>
		<item>
			<title>justpi on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273539</link>
			<pubDate>Tue, 21 May 2013 12:36:56 +0000</pubDate>
			<dc:creator>justpi</dc:creator>
			<guid isPermaLink="false">1273539@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Since you have the Custom Design upgrade, it's possible. You set the number of posts per page to 1 in Settings &#62; Reading, and you add a bit of coding in the CSS editor - see this post of mine, near the bottom:<br />
<a href="http://wpbtips.wordpress.com/2012/06/05/disabling-infinite-scrolling/" rel="nofollow">http://wpbtips.wordpress.com/2012/06/05/disabling-infinite-scrolling/</a>
</p>
]]></description>
					</item>
		<item>
			<title>theappositeak on "Next and Previous Buttons/Links"</title>
			<link>http://en.forums.wordpress.com/topic/next-and-previous-buttonslinks#post-1273514</link>
			<pubDate>Tue, 21 May 2013 12:10:02 +0000</pubDate>
			<dc:creator>theappositeak</dc:creator>
			<guid isPermaLink="false">1273514@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello,<br />
I am working in Twenty Eleven theme and I am wondering if it is possible to make the blog only have one post per page and then have a next and previous button at the bottom?</p>
<p>Please help I am quite new so I am not exactly sure what is and not possible, Thank you
</p>
]]></description>
					</item>
		<item>
			<title>sarahbama on "Oxygen: Inserting images causing spacing issues"</title>
			<link>http://en.forums.wordpress.com/topic/oxygen-inserting-images-causing-spacing-issues#post-1267885</link>
			<pubDate>Thu, 16 May 2013 17:02:35 +0000</pubDate>
			<dc:creator>sarahbama</dc:creator>
			<guid isPermaLink="false">1267885@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks Michie but now the bullet points aren't spaced properly - <a href="http://sarahbama.com/2013/05/14/from-one-adventure-to-the-next/" rel="nofollow">http://sarahbama.com/2013/05/14/from-one-adventure-to-the-next/</a></p>
<p>Sarah
</p>
]]></description>
					</item>
		<item>
			<title>michiecat on "Oxygen: Inserting images causing spacing issues"</title>
			<link>http://en.forums.wordpress.com/topic/oxygen-inserting-images-causing-spacing-issues#post-1267107</link>
			<pubDate>Thu, 16 May 2013 00:28:13 +0000</pubDate>
			<dc:creator>michiecat</dc:creator>
			<guid isPermaLink="false">1267107@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi there,</p>
<p>It looked like you had some empty paragraphs in your post text, and that was causing the extra space. I fixed it for you by clicking on the "Text" tab in the Edit Post screen, and then clicking "Update".
</p>
]]></description>
					</item>

	</channel>
</rss>
