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

		<item>
			<title>squarepixel on "@-rules"</title>
			<link>http://en.forums.wordpress.com/topic/-rules#post-1131950</link>
			<pubDate>Wed, 23 Jan 2013 17:16:59 +0000</pubDate>
			<dc:creator>squarepixel</dc:creator>
			<guid isPermaLink="false">1131950@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Applying some custom design for a specific post should be pretty easy.</p>
<p>If you look at the source code of your page, and search for the &#60;body&#62; tag, you will see that it has some useful CSS classes, such as:</p>
<p><code>&lt;body class=&quot;single single-post postid-3 single-format-standard ...</code></p>
<p>The useful part for you is the "postid-321", which is the unique ID of this post.</p>
<p>You can now style your specific content like this:</p>
<p><code>.postid-321 .element-I-want-to-change { background: yellow; color: black; }</code></p>
<p>If you want to make page-specific changes, this method should work fine.
</p>
]]></description>
					</item>
		<item>
			<title>ofrag on "@-rules"</title>
			<link>http://en.forums.wordpress.com/topic/-rules#post-1130985</link>
			<pubDate>Tue, 22 Jan 2013 21:18:01 +0000</pubDate>
			<dc:creator>ofrag</dc:creator>
			<guid isPermaLink="false">1130985@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The end goal was to make page specific modifications. So what you are proposing will work. </p>
<p><code>&lt;br /&gt;
.pagetype &gt; .element-I-want-to-change&lt;br /&gt;
</code></p>
<p>Now I'm just wondering what I would do if I had to change a specific post that shares a layout with other pages...</p>
<p>Currently AFIK the only browser that supports it is firefox.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "@-rules"</title>
			<link>http://en.forums.wordpress.com/topic/-rules#post-1130674</link>
			<pubDate>Tue, 22 Jan 2013 17:37:13 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">1130674@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I read that @document has been deferred to CSS4:<br />
<a href="http://dev.w3.org/csswg/css3-conditional/#changes" rel="nofollow">http://dev.w3.org/csswg/css3-conditional/#changes</a></p>
<p>I also couldn't find much info on browser support, so I'm not sure how many browsers currently even support it.</p>
<p>What is your end goal? Are you trying to target specific types of pages? If so, WordPress.com applies body classes to all of the different page types and those can be used to target various page types.
</p>
]]></description>
					</item>
		<item>
			<title>ofrag on "@-rules"</title>
			<link>http://en.forums.wordpress.com/topic/-rules#post-1123785</link>
			<pubDate>Mon, 14 Jan 2013 18:45:50 +0000</pubDate>
			<dc:creator>ofrag</dc:creator>
			<guid isPermaLink="false">1123785@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Trying to use @document{} rule set and on update the system strips out the nested rule. </p>
<p>Example:<br />
<pre><code>@document url(&quot;http://www.w3.org/Style/CSS/&quot;) {
  #summary { background: yellow; color: black}
}</code></pre>
<p>on save result:<br />
<pre><code>@document url(&quot;http://www.w3.org/Style/CSS/&quot;) {
}
}</code></pre>
<p>Any pointers?
</p>
]]></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>designsimply on "Striped tags"</title>
			<link>http://en.forums.wordpress.com/topic/striped-tags#post-992614</link>
			<pubDate>Thu, 30 Aug 2012 18:11:42 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">992614@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>object-fit and object-position have been added in for WordPress.com, and they will also be available in Custom CSS in the next Jetpack release.</p>
<p>Cheers.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Striped tags"</title>
			<link>http://en.forums.wordpress.com/topic/striped-tags#post-991524</link>
			<pubDate>Wed, 29 Aug 2012 17:23:22 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">991524@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Wait, I assumed you're using WordPress.org, but you might not be :)</p>
<p>Well, either way, more soon…
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Striped tags"</title>
			<link>http://en.forums.wordpress.com/topic/striped-tags#post-991523</link>
			<pubDate>Wed, 29 Aug 2012 17:22:21 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">991523@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi Austin :)</p>
<p>I'll see what I can find out about getting them added. Note that, typically, it's good for Jetpack plugin issues to be posted at <a href="http://wordpress.org/support/plugin/jetpack" rel="nofollow">http://wordpress.org/support/plugin/jetpack</a> instead of here on WordPress.com (just for future reference).</p>
<p>More soon.
</p>
]]></description>
					</item>
		<item>
			<title>austyfrosty on "Striped tags"</title>
			<link>http://en.forums.wordpress.com/topic/striped-tags#post-975912</link>
			<pubDate>Mon, 13 Aug 2012 23:41:18 +0000</pubDate>
			<dc:creator>austyfrosty</dc:creator>
			<guid isPermaLink="false">975912@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Would be awesome if the CSS customizer allowed more CSS3 features.</p>
<p>example:<br />
<pre><code>object-fit: contain; /*&#039;fill&#039; or &#039;cover&#039;*/
object-position: 50%;</code></pre>
<p>It gets striped.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Side bar and Footer mixing"</title>
			<link>http://en.forums.wordpress.com/topic/side-bar-and-footer-mixing#post-931418</link>
			<pubDate>Mon, 02 Jul 2012 23:06:20 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">931418@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>You're welcome.
</p>
]]></description>
					</item>
		<item>
			<title>rhodderz on "Side bar and Footer mixing"</title>
			<link>http://en.forums.wordpress.com/topic/side-bar-and-footer-mixing#post-931415</link>
			<pubDate>Mon, 02 Jul 2012 23:04:04 +0000</pubDate>
			<dc:creator>rhodderz</dc:creator>
			<guid isPermaLink="false">931415@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>ah thank you and sorry did not realize the difference.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Side bar and Footer mixing"</title>
			<link>http://en.forums.wordpress.com/topic/side-bar-and-footer-mixing#post-931406</link>
			<pubDate>Mon, 02 Jul 2012 22:57:04 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">931406@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>We cannot help you here at WordPress.com with that site as it’s not being hosted by WordPress.com and we run on different software. You aren't reffering to a free hosted WordPress.com blog. You have not paid WordPress.com for a custom design upgrade and you cannot get any CSS editing help here at all. </p>
<p>This is the correct forum for your software <a href="http://wordpress.ORG/support/" rel="nofollow">http://wordpress.ORG/support/</a><br />
WordPress.com vs WordPress.org: The Differences<br />
<a href="http://support.wordpress.com/com-vs-org/" rel="nofollow">http://support.wordpress.com/com-vs-org/</a><br />
Best wishes with your site.
</p>
]]></description>
					</item>
		<item>
			<title>rhodderz on "Side bar and Footer mixing"</title>
			<link>http://en.forums.wordpress.com/topic/side-bar-and-footer-mixing#post-931400</link>
			<pubDate>Mon, 02 Jul 2012 22:53:41 +0000</pubDate>
			<dc:creator>rhodderz</dc:creator>
			<guid isPermaLink="false">931400@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Also may someone move this to CSS customization as i placed this in the wrong section, thanks again.
</p>
]]></description>
					</item>
		<item>
			<title>rhodderz on "Side bar and Footer mixing"</title>
			<link>http://en.forums.wordpress.com/topic/side-bar-and-footer-mixing#post-931397</link>
			<pubDate>Mon, 02 Jul 2012 22:52:06 +0000</pubDate>
			<dc:creator>rhodderz</dc:creator>
			<guid isPermaLink="false">931397@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Hi im making a theme for a 100 day challenge me a nd a few friends are doing (based on the one Virgin media are doing) and i have drawn out my design but on the sidebar i want to have a shadow on the left (connection to the main body) and a shadow on the footer (again the area connecting to the Main body) but i want the shadow curved and to connect where the sidebar and footer meet (curve round the corner). Is this possible with CSS3 or do i have to go with my original plan of using a sliced Image?<br />
I will upload my badly drawn design if you want.</p>
<p>Thanks in advance.
</p>
]]></description>
					</item>
		<item>
			<title>supportbot on "Side bar and Footer mixing"</title>
			<link>http://en.forums.wordpress.com/topic/side-bar-and-footer-mixing#post-931398</link>
			<pubDate>Mon, 02 Jul 2012 22:52:06 +0000</pubDate>
			<dc:creator>supportbot</dc:creator>
			<guid isPermaLink="false">931398@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>The blog you specified at 100day.rhodderz.com does not appear to be hosted at WordPress.com.</p>
<p>This support forum is for blogs hosted at WordPress.com. If your question is about a self-hosted WordPress blog then you'll find help at the <a href="http://wordpress.org/support/">WordPress.org forums</a>.</p>
<p>If you don't understand the difference between WordPress.com and WordPress.org, you may find <a href="http://support.wordpress.com/com-vs-org/">this information</a> helpful.</p>
<p>If you forgot to include a link to your blog, you can reply and include it below.  It'll help people to answer your question.</p>
<p>This is an automated message.
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866695</link>
			<pubDate>Tue, 17 Apr 2012 23:26:47 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">866695@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I spoke too soon. It appears the url() function is getting removed when it shouldn't if you use multiple background setggins in one property. I've added that to the bug report. Sorry I missed it before.
</p>
]]></description>
					</item>
		<item>
			<title>ashkyd on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866685</link>
			<pubDate>Tue, 17 Apr 2012 23:11:10 +0000</pubDate>
			<dc:creator>ashkyd</dc:creator>
			<guid isPermaLink="false">866685@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Ah, that makes sense. Thanks for the info. :)
</p>
]]></description>
					</item>
		<item>
			<title>designsimply on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866682</link>
			<pubDate>Tue, 17 Apr 2012 23:08:37 +0000</pubDate>
			<dc:creator>designsimply</dc:creator>
			<guid isPermaLink="false">866682@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for reporting this. There's a bug in the CSS parser. I have reported the bug.</p>
<p>In the mean time, you can work around the issue by removing all the spaces between the list of elements and it should work.</p>
<pre><code>background:url(fancybackground.png) repeat-x,url(myfile.png) no-repeat left top fixed,black;
}</code></pre>
<p>Could you try that out and let me know if you have any trouble with it?</p>
<p>Note that you should make sure to use full URLs starting with http:// inside the url() function in the CSS editor at WordPress.com.
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866662</link>
			<pubDate>Tue, 17 Apr 2012 22:40:51 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">866662@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>All CSS editing is theme specific and the upgrade does come with Staff support. Staff are able to enter private blogs and see what's going on but the rest of us cannot. I have flagged this thread so it will be moved to the CSS Forum.
</p>
]]></description>
					</item>
		<item>
			<title>ashkyd on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866655</link>
			<pubDate>Tue, 17 Apr 2012 22:37:36 +0000</pubDate>
			<dc:creator>ashkyd</dc:creator>
			<guid isPermaLink="false">866655@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Thanks for your prompy reply. I believe this is in the correct spot as I am actually referring to the "Custom Design" upgrade on the wordpress.com hosted service.</p>
<p>The site I am currently working on is set to private, so I have not provided a link. Sorry for any confusion. :)
</p>
]]></description>
					</item>
		<item>
			<title>timethief on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866652</link>
			<pubDate>Tue, 17 Apr 2012 22:34:05 +0000</pubDate>
			<dc:creator>timethief</dc:creator>
			<guid isPermaLink="false">866652@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>Good day to you,<br />
I’m sorry to report that you have accidentally posted to the wrong support forum. We cannot help you here at WordPress.com with that site as it’s not being hosted by WordPress.com and we run on different software. This is the correct forum for your software <a href="http://wordpress.ORG/support/" rel="nofollow">http://wordpress.ORG/support/</a><br />
WordPress.com vs WordPress.org: The Differences<br />
<a href="http://support.wordpress.com/com-vs-org/" rel="nofollow">http://support.wordpress.com/com-vs-org/</a><br />
Best wishes with your site.
</p>
]]></description>
					</item>
		<item>
			<title>ashkyd on "Multiple Backgrounds Stripped"</title>
			<link>http://en.forums.wordpress.com/topic/multiple-backgrounds-stripped#post-866651</link>
			<pubDate>Tue, 17 Apr 2012 22:32:14 +0000</pubDate>
			<dc:creator>ashkyd</dc:creator>
			<guid isPermaLink="false">866651@http://en.forums.wordpress.com/</guid>
			<description><![CDATA[<p>I've noticed when trying to use multiple backgrounds with a fallback for older browsers, the multiple background url(s) are being stripped.</p>
<p>Take the following, for instance:</p>
<p><code>&lt;br /&gt;
.test{&lt;br /&gt;
  /* Fallback for older browsers */&lt;br /&gt;
  background: black url(myfile.png) no-repeat left top fixed;&lt;/p&gt;
&lt;p&gt;  /* Newer, CSS3 browsers */&lt;br /&gt;
  background:&lt;br /&gt;
    url(fancybackground.png) repeat-x,&lt;br /&gt;
    url(myfile.png) no-repeat left top fixed,&lt;br /&gt;
    black;&lt;br /&gt;
}&lt;br /&gt;
</code></p>
<p>Once processed by wordpress.com, it ends up as:<br />
<code>&lt;br /&gt;
.test {&lt;br /&gt;
	background:black url(&#039;myfile.png&#039;) no-repeat left top fixed;&lt;br /&gt;
	background:repeat-x, no-repeat left top fixed, black;&lt;br /&gt;
}&lt;br /&gt;
</code></p>
<p>The outputted code results in the desired fallback behaviour for older browsers, but a plain black background with no image at all in modern browsers. It's a bit annoying.</p>
<p>There is a workaround, and that is to specify the fallback as longhand:<br />
<code>&lt;br /&gt;
.test{&lt;br /&gt;
  /* Fallback for older browsers */&lt;br /&gt;
  background-color:black;&lt;br /&gt;
  background-image: url(myfile.png);&lt;br /&gt;
  background-repeat: no-repeat;&lt;br /&gt;
  background-position: left top;&lt;br /&gt;
  background-attachment: fixed;&lt;/p&gt;
&lt;p&gt;  /* Newer, CSS3 browsers */&lt;br /&gt;
  background:&lt;br /&gt;
    url(fancybackground.png) repeat-x,&lt;br /&gt;
    url(myfile.png) no-repeat left top fixed,&lt;br /&gt;
    black;&lt;br /&gt;
}&lt;br /&gt;
</code></p>
<p>It would still be nice if this could be resolved in the next version of the CSS parsing whatsit. :)
</p>
]]></description>
					</item>

	</channel>
</rss>
