<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Here&#039;s One Solution</title>
	<atom:link href="http://www.heresonesolution.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.heresonesolution.com</link>
	<description>Code I&#039;ve been playing with</description>
	<lastBuildDate>Sat, 28 Jan 2012 08:38:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on An outline of the development process and the people involved by Theodora Kupper</title>
		<link>http://www.heresonesolution.com/2011/05/an-outline-of-the-development-process-and-the-people-involved/comment-page-1/#comment-452</link>
		<dc:creator>Theodora Kupper</dc:creator>
		<pubDate>Sat, 28 Jan 2012 08:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=133#comment-452</guid>
		<description>Hello</description>
		<content:encoded><![CDATA[<p>Hello</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 elements inside block level links cause styling issues in FF 3.6 by kamui57</title>
		<link>http://www.heresonesolution.com/2011/03/html5-elements-inside-block-level-links-cause-styling-issues-in-ff-3-6/comment-page-1/#comment-446</link>
		<dc:creator>kamui57</dc:creator>
		<pubDate>Thu, 05 Jan 2012 19:44:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=78#comment-446</guid>
		<description>Have you found a solution ? Or detected ff3.6 somehow for a css style only for it ?</description>
		<content:encoded><![CDATA[<p>Have you found a solution ? Or detected ff3.6 somehow for a css style only for it ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a CSS gradient and a background image on the same element by Luke Mclean</title>
		<link>http://www.heresonesolution.com/2010/09/using-a-css-gradient-and-a-background-image-on-the-same-element/comment-page-1/#comment-439</link>
		<dc:creator>Luke Mclean</dc:creator>
		<pubDate>Fri, 16 Dec 2011 12:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=47#comment-439</guid>
		<description>This is a great article, thank you very much. Done a bit of tinkering with this myself and got this to work in ie8 like so.

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#039;#ed0000&#039;, endColorstr=&#039;#ba0101&#039;,GradientType=0 ),
            progid:DXImageTransform.Microsoft.AlphaImageLoader(
      src=&#039;./?a=406091&#039;); /* IE6-9 */

hope this helps.

thanks</description>
		<content:encoded><![CDATA[<p>This is a great article, thank you very much. Done a bit of tinkering with this myself and got this to work in ie8 like so.</p>
<p>filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#8217;#ed0000&#8242;, endColorstr=&#8217;#ba0101&#8242;,GradientType=0 ),<br />
            progid:DXImageTransform.Microsoft.AlphaImageLoader(<br />
      src=&#8217;./?a=406091&#8242;); /* IE6-9 */</p>
<p>hope this helps.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a CSS gradient and a background image on the same element by emprear</title>
		<link>http://www.heresonesolution.com/2010/09/using-a-css-gradient-and-a-background-image-on-the-same-element/comment-page-1/#comment-436</link>
		<dc:creator>emprear</dc:creator>
		<pubDate>Thu, 08 Dec 2011 23:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=47#comment-436</guid>
		<description>hi David, simply don&#039;y work for me, my code




G + B 


.example1 {
	width: 300px;
	height: 225px;
	background-image: url(ping.png);
}
.example2 {
	width: 300px;
	height: 225px;
	background-image: -moz-linear-gradient(top,  red,  yellow);
	background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));
}
.example3 {
	width: 300px;
	height: 225px;	
	background-image: url(ping.png), -moz-linear-gradient(top,  red,  yellow);
	background-image: url(ping.png), -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));
}
.example4 {
	/* use shorthand */
	width: 300px;
	height: 225px;	
	background: url(ping.png), -moz-linear-gradient(top,  red,  yellow);
	background: url(ping.png), -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));
}




Show background-image


Show Gradient


Show only background-image


Show only background-image




whtas wrong? tested in Firefox 8/Safari5 (win7) and Chrome 15
any idea
thanks</description>
		<content:encoded><![CDATA[<p>hi David, simply don&#8217;y work for me, my code</p>
<p>G + B </p>
<p>.example1 {<br />
	width: 300px;<br />
	height: 225px;<br />
	background-image: url(ping.png);<br />
}<br />
.example2 {<br />
	width: 300px;<br />
	height: 225px;<br />
	background-image: -moz-linear-gradient(top,  red,  yellow);<br />
	background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));<br />
}<br />
.example3 {<br />
	width: 300px;<br />
	height: 225px;<br />
	background-image: url(ping.png), -moz-linear-gradient(top,  red,  yellow);<br />
	background-image: url(ping.png), -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));<br />
}<br />
.example4 {<br />
	/* use shorthand */<br />
	width: 300px;<br />
	height: 225px;<br />
	background: url(ping.png), -moz-linear-gradient(top,  red,  yellow);<br />
	background: url(ping.png), -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));<br />
}</p>
<p>Show background-image</p>
<p>Show Gradient</p>
<p>Show only background-image</p>
<p>Show only background-image</p>
<p>whtas wrong? tested in Firefox 8/Safari5 (win7) and Chrome 15<br />
any idea<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animations on iPad using Zepto.js by Jeff Jenkins</title>
		<link>http://www.heresonesolution.com/2011/03/animations-on-ipad-using-zepto-js/comment-page-1/#comment-416</link>
		<dc:creator>Jeff Jenkins</dc:creator>
		<pubDate>Wed, 09 Nov 2011 23:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=84#comment-416</guid>
		<description>Love to see a demo.</description>
		<content:encoded><![CDATA[<p>Love to see a demo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting RGBa backgrounds using inline CSS by David</title>
		<link>http://www.heresonesolution.com/2011/10/setting-rgba-backgrounds-using-inline-css/comment-page-1/#comment-380</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 20 Oct 2011 16:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=207#comment-380</guid>
		<description>We didn&#039;t want to have to include another resource, and it would be a bit overkill just for one CSS property.

Modernizr does something similar to my initial JS approach. I just looked and they use el.style.cssText to set it though, which must be how they avoid the JS error.</description>
		<content:encoded><![CDATA[<p>We didn&#8217;t want to have to include another resource, and it would be a bit overkill just for one CSS property.</p>
<p>Modernizr does something similar to my initial JS approach. I just looked and they use el.style.cssText to set it though, which must be how they avoid the JS error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting RGBa backgrounds using inline CSS by Martin</title>
		<link>http://www.heresonesolution.com/2011/10/setting-rgba-backgrounds-using-inline-css/comment-page-1/#comment-379</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 20 Oct 2011 15:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=207#comment-379</guid>
		<description>Couldn&#039;t you use modernizr to detect support for rgba?</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t you use modernizr to detect support for rgba?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a CSS gradient and a background image on the same element by David</title>
		<link>http://www.heresonesolution.com/2010/09/using-a-css-gradient-and-a-background-image-on-the-same-element/comment-page-1/#comment-364</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 04 Aug 2011 23:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=47#comment-364</guid>
		<description>Hi Jared. When you add &quot;no-repeat&quot; to the rule you are switching from using &quot;background-image&quot; to using the &quot;background&quot; shorthand syntax. &quot;no-repeat&quot; is a value for the &quot;background-repeat&quot; rule.

If you swap &quot;background-image&quot; for just &quot;background&quot; everything should work fine.</description>
		<content:encoded><![CDATA[<p>Hi Jared. When you add &#8220;no-repeat&#8221; to the rule you are switching from using &#8220;background-image&#8221; to using the &#8220;background&#8221; shorthand syntax. &#8220;no-repeat&#8221; is a value for the &#8220;background-repeat&#8221; rule.</p>
<p>If you swap &#8220;background-image&#8221; for just &#8220;background&#8221; everything should work fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using a CSS gradient and a background image on the same element by Jared Polivka</title>
		<link>http://www.heresonesolution.com/2010/09/using-a-css-gradient-and-a-background-image-on-the-same-element/comment-page-1/#comment-363</link>
		<dc:creator>Jared Polivka</dc:creator>
		<pubDate>Thu, 04 Aug 2011 20:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=47#comment-363</guid>
		<description>First off, awesome article.  I didn&#039;t realize this was possible and I&#039;ve often wrapped elements in an extra div to pull of the effect but this way is much cleaner.

However, I&#039;m having a bit of trouble getting this fix to work.  Whenever I specify no-repeat it stops working (no back ground image and no gradient).  If I leave out no-repeat the gradient pulls in but then I have tons of repeating arrows within my element.  

Below is my code. Any ideas on where I&#039;m screwing it up?  Thanks again for the post David.

background-image: url(../images/arrow_toggle.png) no-repeat, -webkit-gradient(linear, left bottom, left top, color-stop(0.43, rgb(201,201,201)), color-stop(0.72, rgb(219,219,219)));</description>
		<content:encoded><![CDATA[<p>First off, awesome article.  I didn&#8217;t realize this was possible and I&#8217;ve often wrapped elements in an extra div to pull of the effect but this way is much cleaner.</p>
<p>However, I&#8217;m having a bit of trouble getting this fix to work.  Whenever I specify no-repeat it stops working (no back ground image and no gradient).  If I leave out no-repeat the gradient pulls in but then I have tons of repeating arrows within my element.  </p>
<p>Below is my code. Any ideas on where I&#8217;m screwing it up?  Thanks again for the post David.</p>
<p>background-image: url(../images/arrow_toggle.png) no-repeat, -webkit-gradient(linear, left bottom, left top, color-stop(0.43, rgb(201,201,201)), color-stop(0.72, rgb(219,219,219)));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Solarized theme for Aptana in Eclipse by Rune Kaagaard</title>
		<link>http://www.heresonesolution.com/2011/04/a-solarized-theme-for-aptana-in-eclipse/comment-page-1/#comment-295</link>
		<dc:creator>Rune Kaagaard</dc:creator>
		<pubDate>Tue, 21 Jun 2011 07:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.heresonesolution.com/?p=103#comment-295</guid>
		<description>Yes the one from solarized.zip works perfectly. Thanks David Owens!</description>
		<content:encoded><![CDATA[<p>Yes the one from solarized.zip works perfectly. Thanks David Owens!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

