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

		<item>
			<title>devblog on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262944</link>
			<pubDate>Thu, 23 Oct 2008 18:29:18 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">262944@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>No problem, jt4.</p>
<p>Would a staff member please delete the URL to the sample page in <a href="http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll?replies=26#post-262628">me post</a> above?  Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262903</link>
			<pubDate>Thu, 23 Oct 2008 17:09:33 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">262903@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Genius! Thanks so much, this was giving me the biggest headache ever! *Bows down*</p>
<p>I've got the photos so you can go ahead and delete them from your server. Thanks again.
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262628</link>
			<pubDate>Wed, 22 Oct 2008 22:18:33 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">262628@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>sorry, I linked to your blog instead of my sample.  Here's the link to the sample page:</p>
<p>(URL deleted - Hanni)
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262626</link>
			<pubDate>Wed, 22 Oct 2008 22:17:23 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">262626@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Vivian,</p>
<p>Thanks, but let's wait to see if I'll be able to be around more.  If I can, you know I'll be more than happy to assist.</p>
<p>BTW, thanks for your compliment on my web app :)</p>
<p>JT4,</p>
<p>So you want your blog to look like <a href="http://jt4breakfast.wordpress.com/">this</a>, right? Well, let's modify your CSS code to accomplish this.</p>
<p>I took the liberty of modifying your header image and created a background image for your contents.  You can get them from here:</p>
<p>http:&#47;&#47;www.coderlab.us/samples/jt4/header_bg.jpg<br />
http:&#47;&#47;www.coderlab.us/samples/jt4/contents_bg.gif</p>
<p>After you get them, would you please let me know so I can delete the files, and sample page from me server?  Thanks</p>
<p>Now the fun part.</p>
<p>In your "body" definition you have this:</p>
<pre><code>background:color:#CE7B02 repeat-x top center fixed;
...
...
background-color:#F1E9CE!important;</code></pre>
<p>This is incorrect.  The syntax of the first line is wrong.  You cannot set the value of a property with other properties like that.  The correct way would be:</p>
<pre><code>background: #f1e9ce;</code></pre>
<p>This  will render unnecessary the second property: <strong>background-color:#F1E9CE !important;</strong>.  Oh, and you don't need the !important rule. Also, I'd recommend you to use shortcuts instead.  If you didn't know <strong>background</strong> is the shortcut of the <strong>background-xxx</strong> properties.</p>
<p>So, I'd recommend you to write your definitions like so:</p>
<pre><code>body {
	background: #F1E9CE;
	border:none;
	font-size:66%;
	font-family:&#039;Lucida Grande&#039;, Verdana, Arial, Sans-Serif;
	color:#6F815D;
	text-align:left;
	margin:0;
	padding:0;
}

#page {
	background: #CABDBF url(contents_bg.gif) top left repeat-y;
	width:1000px;
	margin: 0 auto;
	padding: 0;
	clear: both;
	position: relative;
	overflow: hidden;
}

#header {
	height:457px;
	width:1000px;
	background: transparent url(header_bg.jpg) top left no-repeat;
	clear: both;
	margin: 0;
	padding: 0;
}

#content {
	float:left;
	background-color:#CABDBF;
	width:493px;
	overflow:hidden;
	margin: 0 0 0 50px;
	padding:20px 0 0 25px;
}

html &gt; body #content {margin: 0 0 0 100px;}

#sidebar {
	width:227px;
	border-left:1px solid #896A70;
	margin:0 0 0 637px;
	padding:10px 0 20px 25px;
}

#footer {
	text-align:right;
	clear:both;
	height:50px;
	margin-right: 100px;
	padding:20px 15px 0 0;
}</code></pre>
<p>Those are the only definitions you need to modify.</p>
<p>I'd recommend you also to move "#header h1" and "#header .description" <em>below</em> the "#header" definition.  Even though it doesn't matter where you define your elements, it's more organized and easier to find them later.</p>
<p>Those are the changes you need to make in order to make your blog look the way you want.  I tested the code in Firefox 3 and IE6, so you should be okay with those browsers.  Although I haven't tested it in Safari nor Opera, I'm  bet it'll look good in those too.</p>
<p>On a side note, I'm glad that wp.com is finally allowing the use of child selectors... sometimes  IE6 can be a real pain and child selectors help to work around the "headaches" IE provides.</p>
<p>HTH
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262589</link>
			<pubDate>Wed, 22 Oct 2008 20:43:10 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">262589@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Can't wait! Thanks.
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262569</link>
			<pubDate>Wed, 22 Oct 2008 19:04:58 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">262569@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hey devblog - if you are going to be around a bit more, we can add a tag for you, too :) If we do that (let's call it devlook) you can subscribe to the RSS feed for it and answer the tough questions, like this one. Would you be willing to do that?
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262563</link>
			<pubDate>Wed, 22 Oct 2008 18:37:34 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">262563@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<blockquote><p>
I can't change the header size without changing the content size as well
</p></blockquote>
<p>Yes, you can. If you create a background image for #page using a technique similar to faux columns, you should be able to achieve the results you want.</p>
<p>I can't give you more details right now, but at lunch time I'll have more time and I will explain in more detail.
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262517</link>
			<pubDate>Wed, 22 Oct 2008 16:25:14 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">262517@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>No, I don't want the duplicate effect. The only reason I have that background image is so the entire header can be seen (i.e. the end of the wings on the the birds on the right, and the colorful embellishment on the left). It's suppose to be one seamless header,  but as I said, I can't change the header size without changing the content size as well, which I don't want to do.</p>
<p>Also, I'll look into using a different font. Thanks!
</p>
]]></description>
					</item>
		<item>
			<title>devblog on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262347</link>
			<pubDate>Wed, 22 Oct 2008 06:03:21 +0000</pubDate>
			<dc:creator>devblog</dc:creator>
			<guid isPermaLink="false">262347@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>When you said your background didn't scroll it really confused me and didn't know what exactly you wanted.  I now understand that you want the background to <em>move down</em> the equivalent to the admin bar's height when logged in.</p>
<p>Now, do you really need the RetroLoveThemeBackG3.jpg file? is that "duplicate" effect you want to give to your header?  if so, let me know so that I can try to come up with a solution to your problem.</p>
<p>BTW, I would recommend you to not use Lucida Grande, it's a font really hard to read especially if it's small... just a suggestion.
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-262076</link>
			<pubDate>Tue, 21 Oct 2008 16:21:56 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">262076@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Someone help! I'm still having trouble with my background position not being to true to the CSS editor's depiction of it. If you look at my blog without logging into WordPress, the background is virtually seamless with the header. However, if you're signed on as a wordpress user, it looks completely wonky.I am not able to make my header size larger than my page in this theme. If someone could make some suggestions or give me the name of a theme whose header and page width are separated, that would be amazing!
</p>
]]></description>
					</item>
		<item>
			<title>babaliciou5 on "Padding Issue in my Sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/padding-issue-in-my-sidebar#post-260305</link>
			<pubDate>Thu, 16 Oct 2008 23:20:12 +0000</pubDate>
			<dc:creator>babaliciou5</dc:creator>
			<guid isPermaLink="false">260305@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I think you should narrow either the #primary width or div#container width, to pull up your #secondary.</p>
<p>Or widen the #wrapper.
</p>
]]></description>
					</item>
		<item>
			<title>nrepair on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-260297</link>
			<pubDate>Thu, 16 Oct 2008 22:58:10 +0000</pubDate>
			<dc:creator>nrepair</dc:creator>
			<guid isPermaLink="false">260297@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@ deltafoxtrot: I decided to go with rounded background images instead of the -moz-border styling. This was a little more difficult, but it makes my site appear the same in all major browsers. ;)
</p>
]]></description>
					</item>
		<item>
			<title>deltafoxtrot on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-260288</link>
			<pubDate>Thu, 16 Oct 2008 22:30:34 +0000</pubDate>
			<dc:creator>deltafoxtrot</dc:creator>
			<guid isPermaLink="false">260288@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I wasn't. My notebook is broken and I'm writing this from an iPhone. Plese don't expect me to do anything till next week. Just bump this thread on Monday to force it into my reading list.
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Padding Issue in my Sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/padding-issue-in-my-sidebar#post-260279</link>
			<pubDate>Thu, 16 Oct 2008 22:12:10 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">260279@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Sorry - I can't figure it out. I used Firebug and was able to get the left part to change but not the right. I'll put a tag on this thread for one of the CSS gurus to take a look.
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-260273</link>
			<pubDate>Thu, 16 Oct 2008 21:53:56 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">260273@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hm, guess delta hasn't been around.
</p>
]]></description>
					</item>
		<item>
			<title>filipspagnoli on "Padding Issue in my Sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/padding-issue-in-my-sidebar#post-260264</link>
			<pubDate>Thu, 16 Oct 2008 21:30:10 +0000</pubDate>
			<dc:creator>filipspagnoli</dc:creator>
			<guid isPermaLink="false">260264@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I guess it's the images in your right sidebar. Try to make them a few dozens of pixels smaller and reinsert them.
</p>
]]></description>
					</item>
		<item>
			<title>nrepair on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-260209</link>
			<pubDate>Thu, 16 Oct 2008 16:57:33 +0000</pubDate>
			<dc:creator>nrepair</dc:creator>
			<guid isPermaLink="false">260209@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Just wanted to bump this up. Anyone have any suggestions?
</p>
]]></description>
					</item>
		<item>
			<title>gpccexpo09 on "Padding Issue in my Sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/padding-issue-in-my-sidebar#post-260208</link>
			<pubDate>Thu, 16 Oct 2008 16:44:59 +0000</pubDate>
			<dc:creator>gpccexpo09</dc:creator>
			<guid isPermaLink="false">260208@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hey vivianpage,</p>
<p>Thanks for the help, unfortunately what you suggested didn't work... Is there any other suggestion that you would be able to give me?</p>
<p>Thanks Again
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Padding Issue in my Sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/padding-issue-in-my-sidebar#post-260183</link>
			<pubDate>Thu, 16 Oct 2008 15:32:54 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">260183@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Jake</p>
<p>Since you've just started with that blog, might I suggest you use the newer version of Sandbox (1.0) rather than the older one that you are working with. </p>
<p>I think the problem is here:<br />
<pre><code>div#content.hfeed {
width:532px;
margin:0 0 0 200px;
padding:0;
}</code></pre>
<p>I believe the margin should be:<br />
<pre><code>margin:0 200px;</code></pre>
]]></description>
					</item>
		<item>
			<title>gpccexpo09 on "Padding Issue in my Sidebar"</title>
			<link>http://en.forums.wordpress.com/topic/padding-issue-in-my-sidebar#post-260155</link>
			<pubDate>Thu, 16 Oct 2008 14:38:08 +0000</pubDate>
			<dc:creator>gpccexpo09</dc:creator>
			<guid isPermaLink="false">260155@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hello All,</p>
<p>I am having a bit of trouble customizing my blog with CSS. Here is the blog: <a href="http://provexpo09.wordpress.com" rel="nofollow">http://provexpo09.wordpress.com</a><br />
The setup is primary sidebar - content - secondary sidebar. There is something that is pushing down the secondary sidebar, it should be aligned at the same height as the rest of the page content. Any suggests the anyone has would be greatly appreciated.</p>
<p>Thanks,<br />
_Jake
</p>
]]></description>
					</item>
		<item>
			<title>nrepair on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-259917</link>
			<pubDate>Wed, 15 Oct 2008 22:25:34 +0000</pubDate>
			<dc:creator>nrepair</dc:creator>
			<guid isPermaLink="false">259917@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>@ vivianpaige: You're welcome to "steal" any of my css. I've borrowed alot of it myself. ;)
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-259907</link>
			<pubDate>Wed, 15 Oct 2008 21:57:03 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">259907@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I put a tag on here for one of the experts to take a look. I honestly have no idea. (But once you figure it out, I may have to steal it :) )
</p>
]]></description>
					</item>
		<item>
			<title>nrepair on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-259859</link>
			<pubDate>Wed, 15 Oct 2008 19:56:17 +0000</pubDate>
			<dc:creator>nrepair</dc:creator>
			<guid isPermaLink="false">259859@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>That first link isn't working for some reason. Try this one: <a href="http://inrepair.files.wordpress.com/2008/10/corner_problem3.jpg" rel="nofollow">http://inrepair.files.wordpress.com/2008/10/corner_problem3.jpg</a>
</p>
]]></description>
					</item>
		<item>
			<title>nrepair on "Rounded Corners &amp; Background Color Problems"</title>
			<link>http://en.forums.wordpress.com/topic/rounded-corners-038-background-color-problems#post-259854</link>
			<pubDate>Wed, 15 Oct 2008 19:52:00 +0000</pubDate>
			<dc:creator>nrepair</dc:creator>
			<guid isPermaLink="false">259854@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I'm using rounded corners on my header and footer divs, and in order for them to display correctly, I have to define my content's background color using the container div instead of the wrapper div. If I define the background color in the wrapper div, my rounded corners don't display correctly.</p>
<p>See: <a href="http://inrepair.files.wordpress.com/2008/10/corner_problem.jpg" rel="nofollow">http://inrepair.files.wordpress.com/2008/10/corner_problem.jpg</a></p>
<p>This works great except on short pages, where the background color only goes to just below the post and doesn't extend down to the footer.</p>
<p>See: <a href="http://inrepair.net/contact/" rel="nofollow">http://inrepair.net/contact/</a></p>
<p>Is there a workaround so that I can keep my rounded corners and have my background color go all the way to the footer?
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-254757</link>
			<pubDate>Wed, 01 Oct 2008 03:35:21 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">254757@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Sorry I wasn't of more help.
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-254750</link>
			<pubDate>Wed, 01 Oct 2008 03:28:59 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">254750@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Ok, I will wait for Delta. Thanks for responding so quickly, and repeatedly. It's been a big help.
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-254744</link>
			<pubDate>Wed, 01 Oct 2008 03:17:38 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">254744@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hmm - you are over my head now :(  I think it may have something to do with the position being relative or absolute but I'm not sure. Delta is the one you need to wait for. </p>
<p>As for the CSS editor adding in that semicolon - that's something that you should report to support. (Since the fixed also should not have a semicolon after it, it's not having any effect on the CSS.)
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-254729</link>
			<pubDate>Wed, 01 Oct 2008 02:59:43 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">254729@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The CSS editor seems to automatically add the semicolon when I remove it . . . in my preview it scrolls, but then my bg is in the correct position as well . . . I don't know what's going on.
</p>
]]></description>
					</item>
		<item>
			<title>jt4breakfast on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-254724</link>
			<pubDate>Wed, 01 Oct 2008 02:57:28 +0000</pubDate>
			<dc:creator>jt4breakfast</dc:creator>
			<guid isPermaLink="false">254724@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>New issue . .. I put up the background I'd wanted from the beginning and edited the position in CSS. When I look at it in the preview, it looks perfect, but when I go to my site, the background is lower than it's supposed to be. What gives?
</p>
]]></description>
					</item>
		<item>
			<title>vivianpaige on "Can&#039;t make my stupid background scroll . . ."</title>
			<link>http://en.forums.wordpress.com/topic/cant-make-my-stupid-background-scroll#post-254721</link>
			<pubDate>Wed, 01 Oct 2008 02:55:44 +0000</pubDate>
			<dc:creator>vivianpaige</dc:creator>
			<guid isPermaLink="false">254721@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hmm - I'm not having any luck with that. Delta will have to work on it.</p>
<p>And I see that your bg is NOT scrolling. Take the semicolon out after the word scroll
</p>
]]></description>
					</item>

	</channel>
</rss>
