<?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: transition - Recent Posts</title>
		<link>http://en.forums.wordpress.com/tags/transition</link>
		<description>WordPress.com Forums &#187; Tag: transition - Recent Posts</description>
		<language>en</language>
		<pubDate>Tue, 21 May 2013 13:50:51 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1-alpha-2539</generator>
				<atom:link href="http://en.forums.wordpress.com/rss/tags/transition" rel="self" type="application/rss+xml" />

		<item>
			<title>designsimply on "Single Photo Transition"</title>
			<link>http://en.forums.wordpress.com/topic/single-photo-transition#post-1160139</link>
			<pubDate>Fri, 22 Feb 2013 18:18:32 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1160139@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>What is most frustrating is that I have a book containing a lot of CSS reference and it seems 90% of it just doesnt work on WordPress.</p></blockquote>
<p>Highly unlikely that's WordPress-related. What book is it out of curiosity? I'm particularly fond of this book and learned a lot from it when it came out: <a href="http://www.cssmastery.com/" rel="nofollow">http://www.cssmastery.com/</a>
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Single Photo Transition"</title>
			<link>http://en.forums.wordpress.com/topic/single-photo-transition#post-1160131</link>
			<pubDate>Fri, 22 Feb 2013 18:14:56 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1160131@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>First, try using ".wp-caption img" as a selector. That will affect any image inside a caption—if you are trying to restrict it further than that, reply back about what exactly you're trying to target. For example, to limit the effect just to captioned images on the home page, you could use a selector of .home .wp-caption img"  Next, your syntax is just a bit off.</p>
<p>This:<br />
<code>transition-property: opacity, 4s, linear;</code></p>
<p>Should be:<br />
<code>transition-property: opacity;</code></p>
<p>And this:<br />
<code>opacity, 4s, linear</code></p>
<p>Should be:<br />
<code>opacity 4s linear</code></p>
<p>Try updating your example to this:</p>
<pre><code>.wp-caption img {
	transition-property: opacity;
	-o-transition: opacity 4s linear;
	-moz-transition: opacity 4s linear;
	-webkit-transition: opacity 4s linear;
	opacity: .25;
}
.wp-caption img:hover {
	opacity: 1;
}</code></pre>
<p>Remember that this stuff is CSS3, so make sure you're testing with a browser that supports it. <a href="http://caniuse.com/#search=transition" rel="nofollow">http://caniuse.com/#search=transition</a>
</p>
]]></description>
					</item>
		<item>
			<title>edgelinux on "Single Photo Transition"</title>
			<link>http://en.forums.wordpress.com/topic/single-photo-transition#post-1156435</link>
			<pubDate>Mon, 18 Feb 2013 21:56:02 +0000</pubDate>
			<dc:creator>edgelinux</dc:creator>
			<guid isPermaLink="false">1156435@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>What is most frustrating is that I have a book containing a lot of CSS reference and it seems 90% of it just doesnt work on wordpress.</p>
<p>From my understanding this should work:</p>
<pre><code>.wp-caption [src$=&#039;floweroflife.jpg&#039;] img {
	transition-property: opacity, 4s, linear;
	-o-transition: opacity, 4s, linear;
	-moz-transition: opacity, 4s, linear;
	-webkit-transition: opacity, 4s, linear;
	opacity: .25;
}
.wp-caption:hover {
	opacity: 1;
}</code></pre>
<p>but does not work at all. Breaks the selection of the image which contains floweroflife.jpg. I've also tried coding in the entire URL. No go.
</p>
]]></description>
					</item>
		<item>
			<title>edgelinux on "Single Photo Transition"</title>
			<link>http://en.forums.wordpress.com/topic/single-photo-transition#post-1156404</link>
			<pubDate>Mon, 18 Feb 2013 21:39:33 +0000</pubDate>
			<dc:creator>edgelinux</dc:creator>
			<guid isPermaLink="false">1156404@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I had to turn that off because it is hitting posts of a different child type in one of my categories. I tried doing :first-of-type and that seems to bleed through that way and affect more than the first image.
</p>
]]></description>
					</item>
		<item>
			<title>edgelinux on "Single Photo Transition"</title>
			<link>http://en.forums.wordpress.com/topic/single-photo-transition#post-1156355</link>
			<pubDate>Mon, 18 Feb 2013 21:00:41 +0000</pubDate>
			<dc:creator>edgelinux</dc:creator>
			<guid isPermaLink="false">1156355@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've tried multiple different ways viewed on the internet but I cannot seem to get my transition to work properly. I have the content selected correctly and have followed all information I can find on it. Here is the section of CSS I have. Instead of 25% opacity up to 100% opacity in no time I want a nice transition.</p>
<pre><code>.wp-caption:first-child {
	transition-property: opacity, 4s, linear;
	-o-transition: opacity, 4s, linear;
	-moz-transition: opacity, 4s, linear;
	-webkit-transition: opacity, 4s, linear;
	opacity: .25;
}
.wp-caption:hover {
	opacity: 1;
}</code></pre>
]]></description>
					</item>
		<item>
			<title>designsimply on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1088927</link>
			<pubDate>Fri, 07 Dec 2012 02:18:49 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1088927@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>I have the gridspace theme and wanted to customize my layout so that I have four infinitely scrolling images at the very top, replacing the one current image.</p></blockquote>
<p>That's a pretty freaking awesome tutorial. Here's how you can take the example from <a href="http://designshack.net/articles/css/infinitephotobanner/" rel="nofollow">http://designshack.net/articles/css/infinitephotobanner/</a> and use it on your blog"</p>
<p>First, you'll need to add HTML. Add it to a <a href="http://en.support.wordpress.com/widgets/text-widget/">text widget</a> in the sidebar. Here is some example HTML you can use based on the tutorial and using some random images from your header and latest posts: </p>
<pre><code>&lt;div class=&quot;photobanner&quot;&gt;
	&lt;img class=&quot;first&quot; src=&quot;http://shit102.files.wordpress.com/2012/11/cropped-cropped-img_6344.jpg&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;http://shit102.files.wordpress.com/2012/11/img_7426.jpg&quot; alt=&quot;&quot;&gt;
	&lt;img src=&quot;http://shit102.files.wordpress.com/2012/11/img_0036.jpg&quot; alt=&quot;&quot;&gt;
&lt;/div&gt;</code></pre>
<p>To add more images, you would just add more "img" lines with different image links in them.</p>
<p>After that, copy the following CSS (only slightly modified from the tutorial) into your Appearance &#8594; Custom Design &#8594; CSS editor and click the Preview button:</p>
<pre><code>.photobanner {
	height: 563px;
	margin-bottom: 80px;
	position: absolute;
	top: 0;
	width: 3550px;
}

/*keyframe animations*/
.photobanner .first {
	-webkit-animation: bannermove 30s linear infinite;
	-moz-animation: bannermove 30s linear infinite;
	-ms-animation: bannermove 30s linear infinite;
	-o-animation: bannermove 30s linear infinite;
	animation: bannermove 30s linear infinite;
}

@keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -2125px;
	}
}

@-moz-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -2125px;
	}
}

@-webkit-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -2125px;
	}
}

@-ms-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -2125px;
	}
}

@-o-keyframes bannermove {
}

100% {
	margin-left: -2125px;
}
}

.photobanner img {
	max-height: 563px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}

.photobanner img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	cursor: pointer;
	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}</code></pre>
<p>That's pushing the edges of what CSS can do these days. Pretty neat! Note that these CSS3 rules will only work in the latest browsers, and in the case of Internet Explorer, the animations and transitions won't work in any version so far except IE10. You can refer to these charts for reference:</p>
<p>* <a href="http://caniuse.com/#feat=css-animation" rel="nofollow">http://caniuse.com/#feat=css-animation</a><br />
* <a href="http://caniuse.com/#feat=transforms2d" rel="nofollow">http://caniuse.com/#feat=transforms2d</a><br />
* <a href="http://caniuse.com/#search=transition" rel="nofollow">http://caniuse.com/#search=transition</a></p>
<p>Aside: Everyone has access to the stylesheets. CSS is visible by looking at the links in the header code so there's no need to post entire sets of code in the forums and also anyone that knows how to work with CSS can see them. :)
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071734</link>
			<pubDate>Mon, 19 Nov 2012 01:03:04 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1071734@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Staff have access to the Stylesheet. Staff are the  ones who are going to help you and that's not likely to be any time soon as there is a considerable backlog of bloggers waiting who posted before you did. I think you are more likely to be looking at days than hours when it comes to getting CSS editing help.
</p>
]]></description>
					</item>
		<item>
			<title>shit101 on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071731</link>
			<pubDate>Mon, 19 Nov 2012 00:59:35 +0000</pubDate>
			<dc:creator>shit101</dc:creator>
			<guid isPermaLink="false">1071731@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Yes i understand, but since you do not have the access to the style sheet, I'm just posting it here for people to see.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071729</link>
			<pubDate>Mon, 19 Nov 2012 00:57:16 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1071729@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Why did you post that here?  When you alter a theme’s stylesheet, you only need to put in the Editor the modification/additions to the CSS, not the entire thing.
</p>
]]></description>
					</item>
		<item>
			<title>shit101 on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071712</link>
			<pubDate>Mon, 19 Nov 2012 00:43:37 +0000</pubDate>
			<dc:creator>shit101</dc:creator>
			<guid isPermaLink="false">1071712@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p><em>[UPDATE: Code removed by staff because it was too much for one forum reply. It's better to link to the CSS if it's long or just post CSS relevant to the question.]</em>
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071711</link>
			<pubDate>Mon, 19 Nov 2012 00:41:13 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1071711@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Gridspace is a premium theme. We Volunteers answering questions on this support forum do not have access to premium themes.  Staff support comes with the upgrade but there is a backlog of folks waiting. </p>
<p>Read-access to the premium themes forum is now open to all users so you can search to see if your question has been previously asked and answered there. The premium theme forums are at <a href="http://premium-themes.forums.wordpress.com/" rel="nofollow">http://premium-themes.forums.wordpress.com/</a> with separate sections for each theme. <a href="http://premium-themes.forums.wordpress.com/forum/gridspace" rel="nofollow">http://premium-themes.forums.wordpress.com/forum/gridspace</a></p>
<p>If you are not successful when searching there is a link for the specific Premium Theme support forum for your theme under Appearance -&#62; Themes in your blog’s Dashboard, but do note that the premium theme must be active and you must be signed in as the user who purchased it in order to see it and post to it. </p>
<p>Theme description:  <a href="http://theme.wordpress.com/themes/gridspace/" rel="nofollow">http://theme.wordpress.com/themes/gridspace/</a><br />
Live demo site:  <a href="http://gridspacedemo.wordpress.com/" rel="nofollow">http://gridspacedemo.wordpress.com/</a>
</p>
]]></description>
					</item>
		<item>
			<title>shit101 on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071707</link>
			<pubDate>Mon, 19 Nov 2012 00:37:29 +0000</pubDate>
			<dc:creator>shit101</dc:creator>
			<guid isPermaLink="false">1071707@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>New question would be what would be the CSS for scrolling images on the header.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071702</link>
			<pubDate>Mon, 19 Nov 2012 00:34:08 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">1071702@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>What html should I input and where should I input it under?</p></blockquote>
<blockquote><p>Does the Custom Design upgrade let me edit HTML?<br />
No. The Custom Design upgrade allows you to edit fonts and CSS only. You can change the appearance of a theme, but not its HTML markup, PHP code, or content.   <em>Read the full section here</em>  <a href="http://en.support.wordpress.com/custom-design/#frequently-asked-questions" rel="nofollow">http://en.support.wordpress.com/custom-design/#frequently-asked-questions</a> </p></blockquote>
]]></description>
					</item>
		<item>
			<title>shit101 on "SCROLLING IMAGES ON HEADER"</title>
			<link>http://en.forums.wordpress.com/topic/scrolling-images-on-header#post-1071700</link>
			<pubDate>Mon, 19 Nov 2012 00:30:31 +0000</pubDate>
			<dc:creator>shit101</dc:creator>
			<guid isPermaLink="false">1071700@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have the gridspace theme and wanted to customize my layout so that I have four infinitely scrolling images at the very top, replacing the one current image. </p>
<p>This is the gridspace css sheet legend<br />
 * 1.   Resets<br />
 * 2.   Structure<br />
 * 3.   Fonts<br />
 * 4.   Header<br />
 * 5.   Menu<br />
 * 6.   Content<br />
 * 7.   Portfolio Grid/List<br />
 * 8.   Post Formats<br />
 * 9.   Images &#38; Media<br />
 * 10.  Forms<br />
 * 11.  Comments<br />
 * 12.  Tables<br />
 * 13.  Sidebar &#38; Widgets<br />
 * 14.  Footer<br />
 * 15.  Buttons<br />
 * 16.  Messages<br />
 * 17.  Clear Floats<br />
 * 18.  Icons<br />
 * 19.  WordPress.com style overrides<br />
 * 20.  Responsiveness: Tablets<br />
 * 21.  Responsiveness: Mobile<br />
 * 22.  Retina Icons</p>
<p>What html should I input and where should I input it under?<br />
I tried using following the instructions to this blog <a href="http://designshack.net/articles/css/infinitephotobanner/" rel="nofollow">http://designshack.net/articles/css/infinitephotobanner/</a> but it just scrolls the entire blog content.
</p>
]]></description>
					</item>
		<item>
			<title>macmanx on "Long posts not importing properly from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/long-posts-not-importing-properly-from-blogger#post-928918</link>
			<pubDate>Fri, 29 Jun 2012 21:18:16 +0000</pubDate>
			<dc:creator>macmanx</dc:creator>
			<guid isPermaLink="false">928918@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Those Read More links appear to have been pointing elsewhere on the Blogger blog. We don't have a way to automatically change such links, so they will need to be changed manually.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Long posts not importing properly from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/long-posts-not-importing-properly-from-blogger#post-928588</link>
			<pubDate>Fri, 29 Jun 2012 15:54:40 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">928588@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome. Please be patient while waiting for Staff to respond.
</p>
]]></description>
					</item>
		<item>
			<title>policyfix1 on "Long posts not importing properly from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/long-posts-not-importing-properly-from-blogger#post-928580</link>
			<pubDate>Fri, 29 Jun 2012 15:46:48 +0000</pubDate>
			<dc:creator>policyfix1</dc:creator>
			<guid isPermaLink="false">928580@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p><a href="http://policyfix.ca/2012/05/29/tax-fairly-spend-wisely/" rel="nofollow">http://policyfix.ca/2012/05/29/tax-fairly-spend-wisely/</a><br />
There it doesn't show the extra words with the article when you press read more.</p>
<p><a href="http://policyfix.ca/2012/05/15/the-challenges-facing-labour/" rel="nofollow">http://policyfix.ca/2012/05/15/the-challenges-facing-labour/</a><br />
There it goes to an incomplete link when you press read more.</p>
<p>Thanks!
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Long posts not importing properly from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/long-posts-not-importing-properly-from-blogger#post-928567</link>
			<pubDate>Fri, 29 Jun 2012 15:37:23 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">928567@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Please post an active link starting with http:// to an example of what you describe and I'll flag this thread for Staff attention.
</p>
]]></description>
					</item>
		<item>
			<title>policyfix1 on "Long posts not importing properly from Blogger"</title>
			<link>http://en.forums.wordpress.com/topic/long-posts-not-importing-properly-from-blogger#post-928563</link>
			<pubDate>Fri, 29 Jun 2012 15:31:28 +0000</pubDate>
			<dc:creator>policyfix1</dc:creator>
			<guid isPermaLink="false">928563@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I have recently switched my blog from Blogger to WordPress. I thought the transition went well until I clicked on the longer, older posts and the "read more" button either didn't work or went to a broken link. </p>
<p>Does anyone know how to fix this? I imported my blog through the Blogger import through WordPress.
</p>
]]></description>
					</item>
		<item>
			<title>necrotichijinks on "Changing My Theme"</title>
			<link>http://en.forums.wordpress.com/topic/changing-my-theme-2#post-653497</link>
			<pubDate>Sat, 23 Jul 2011 03:29:52 +0000</pubDate>
			<dc:creator>necrotichijinks</dc:creator>
			<guid isPermaLink="false">653497@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Your other option is to switch your theme at a time of day when you get few visitors.  Of course, it helps if you're awake then...
</p>
]]></description>
					</item>
		<item>
			<title>airodyssey on "Changing My Theme"</title>
			<link>http://en.forums.wordpress.com/topic/changing-my-theme-2#post-653477</link>
			<pubDate>Sat, 23 Jul 2011 02:13:18 +0000</pubDate>
			<dc:creator>airodyssey</dc:creator>
			<guid isPermaLink="false">653477@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>There are offline editors that allow you to edit posts now and publish them later, but I doubt that they include the possibility of changing the theme now and make it go live later.
</p>
]]></description>
					</item>
		<item>
			<title>modatraining on "Changing My Theme"</title>
			<link>http://en.forums.wordpress.com/topic/changing-my-theme-2#post-653412</link>
			<pubDate>Sat, 23 Jul 2011 00:11:56 +0000</pubDate>
			<dc:creator>modatraining</dc:creator>
			<guid isPermaLink="false">653412@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Unfortunately, when I preview the site in the new theme, it looks like it will take quite a bit of work for me to clean it up.  Is there a way to work on the new site while the other remains for use?
</p>
]]></description>
					</item>
		<item>
			<title>airodyssey on "Changing My Theme"</title>
			<link>http://en.forums.wordpress.com/topic/changing-my-theme-2#post-653358</link>
			<pubDate>Fri, 22 Jul 2011 23:13:18 +0000</pubDate>
			<dc:creator>airodyssey</dc:creator>
			<guid isPermaLink="false">653358@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi. To my knowledge, changing themes only changes the appearance of your blog. You may have to restore your widgets (from Appearance &#62; Widgets &#62; Inactive), your menus (Appearance &#62; Menus), that sort of thing, but the change itself does not change your blog's structure (articles, pages, etc.)
</p>
]]></description>
					</item>
		<item>
			<title>modatraining on "Changing My Theme"</title>
			<link>http://en.forums.wordpress.com/topic/changing-my-theme-2#post-652880</link>
			<pubDate>Fri, 22 Jul 2011 11:14:16 +0000</pubDate>
			<dc:creator>modatraining</dc:creator>
			<guid isPermaLink="false">652880@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'd like to transition fy site from the INove theme to a premium theme.  During the transition, I'd like the site as it is to continue functioning.  Is there a way to accomplish this?
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Wordpress.com--&gt;Wordpress.org"</title>
			<link>http://en.forums.wordpress.com/topic/wordpresscom-gtwordpressorg#post-292616</link>
			<pubDate>Wed, 07 Jan 2009 00:33:44 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">292616@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Take a look at the FAQ
</p>
]]></description>
					</item>
		<item>
			<title>bobwama on "Wordpress.com--&gt;Wordpress.org"</title>
			<link>http://en.forums.wordpress.com/topic/wordpresscom-gtwordpressorg#post-292606</link>
			<pubDate>Wed, 07 Jan 2009 00:17:10 +0000</pubDate>
			<dc:creator>bobwama</dc:creator>
			<guid isPermaLink="false">292606@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>As a workaround, is there a way to set bobwama.wordpress.com to redirect to my wordpress.org?
</p>
]]></description>
					</item>
		<item>
			<title>bobwama on "Wordpress.com--&gt;Wordpress.org"</title>
			<link>http://en.forums.wordpress.com/topic/wordpresscom-gtwordpressorg#post-292605</link>
			<pubDate>Wed, 07 Jan 2009 00:15:32 +0000</pubDate>
			<dc:creator>bobwama</dc:creator>
			<guid isPermaLink="false">292605@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for your help, guys.
</p>
]]></description>
					</item>
		<item>
			<title>jetsam2flotsam on "Wordpress.com--&gt;Wordpress.org"</title>
			<link>http://en.forums.wordpress.com/topic/wordpresscom-gtwordpressorg#post-292529</link>
			<pubDate>Tue, 06 Jan 2009 21:59:27 +0000</pubDate>
			<dc:creator>jetsam2flotsam</dc:creator>
			<guid isPermaLink="false">292529@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Why not simply register the real domain? (bobwama.com)<br />
(Cheapest place I know is 1and1.com)
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Wordpress.com--&gt;Wordpress.org"</title>
			<link>http://en.forums.wordpress.com/topic/wordpresscom-gtwordpressorg#post-292507</link>
			<pubDate>Tue, 06 Jan 2009 21:23:26 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">292507@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>No, there is no way to do that.
</p>
]]></description>
					</item>
		<item>
			<title>bobwama on "Wordpress.com--&gt;Wordpress.org"</title>
			<link>http://en.forums.wordpress.com/topic/wordpresscom-gtwordpressorg#post-292465</link>
			<pubDate>Tue, 06 Jan 2009 20:29:12 +0000</pubDate>
			<dc:creator>bobwama</dc:creator>
			<guid isPermaLink="false">292465@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I realize that, but that was not what I meant. I was asking if there was a way for me to keep the same url (bobwama.wordpress.com) with wordpress.org. But thank you for your help.
</p>
]]></description>
					</item>

	</channel>
</rss>
