<?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 on: ORB &#124; Fluid CSS One Image Round Borders</title>
	<atom:link href="http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/</link>
	<description>Just my blog</description>
	<lastBuildDate>Wed, 24 Feb 2010 20:26:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Extend Studio</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-1163</link>
		<dc:creator>Extend Studio</dc:creator>
		<pubDate>Tue, 10 Nov 2009 09:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-1163</guid>
		<description>You could try FlexiPanels CSS, Dreamweaver extension that generates rounded corners css boxes from an easy to use interface.

&lt;a href=&quot;http://www.extendstudio.com/product/flexipanels_css.html&quot; rel=&quot;nofollow&quot;&gt;http://www.extendstudio.com/product/flexipanels_css.html&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You could try FlexiPanels CSS, Dreamweaver extension that generates rounded corners css boxes from an easy to use interface.</p>
<p><a href="http://www.extendstudio.com/product/flexipanels_css.html" rel="nofollow">http://www.extendstudio.com/product/flexipanels_css.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blog.johnjcamilleri.com &#187; Rounded corners (a few years too late)</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-1064</link>
		<dc:creator>blog.johnjcamilleri.com &#187; Rounded corners (a few years too late)</dc:creator>
		<pubDate>Sat, 21 Mar 2009 17:42:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-1064</guid>
		<description>[...] http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/" rel="nofollow">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manuel Cepeda</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-915</link>
		<dc:creator>Manuel Cepeda</dc:creator>
		<pubDate>Wed, 18 Feb 2009 02:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-915</guid>
		<description>to bad, html code is not allowed in thnis post :S</description>
		<content:encoded><![CDATA[<p>to bad, html code is not allowed in thnis post :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manuel Cepeda</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-914</link>
		<dc:creator>Manuel Cepeda</dc:creator>
		<pubDate>Wed, 18 Feb 2009 02:01:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-914</guid>
		<description>I upgrade this version to be easy to use with jquery who hide the &lt;b&gt; calls, here you go:

put ypou jquery.js file in header and the jquery callto wrap your box:





$(document).ready(function(){
			
			
			
$(&#039;div.bigBox&#039;).prepend(&#039;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&#039;).append(&#039; &lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&#039;);


		
		});

	


then, add the following css:

.bigBox, .smallBox{border:#95B3D7 1px solid; background:#F7FBFE; float:left;margin:0;}
.bigBox .content, .smallBox .content{position:relative;}


/*BIG BOX CSS*/
.bigBox b.bt, .bigBox b.bt b,.bigBox b.bb,.bigBox b.bb b{background-image:url(../../images/bigBoxCorners.gif);background-repeat:no-repeat;display:block;font-size:1px;height:14px;position:relative}

/*Top Left*/
.bigBox, b.bt{left:-1px;top:-1px}
/*Top right*/
.bigBox, b.bt b{background-position:100% -14px;left:2px;top:0} /*background-position:100% ()put height corners with negative sign); left: (Adjust depending on image);top:0(Adjust depending on image)*/
/*bottom left*/
.bigBox, b.bb{background-position:0 -28px;left:-1px;top:1px}  /*background-position:100% ()put height corners*2 with negative sign); left: (Adjust depending on image);top:0(Adjust depending on image)*/
/*bottom right*/
.bigBox, b.bb b{background-position:100% -42px;left:2px;top:0} /*background-position:100% ()put heightcorners*3 with negative sign); left: (Adjust depending on image);top:0(Adjust depending on image)*/

then, just call your box in the html:

  
   
hey this is a rounded simple box!

	 
  

looks pretty and simple :P!

(don&#039;t forget vreate oyur own images)


cheers!</description>
		<content:encoded><![CDATA[<p>I upgrade this version to be easy to use with jquery who hide the <b> calls, here you go:</p>
<p>put ypou jquery.js file in header and the jquery callto wrap your box:</p>
<p>$(document).ready(function(){</p>
<p>$(&#8216;div.bigBox&#8217;).prepend(&#8216;</b><b></b><b></b>&#8216;).append(&#8216; <b></b><b></b>&#8216;);</p>
<p>		});</p>
<p>then, add the following css:</p>
<p>.bigBox, .smallBox{border:#95B3D7 1px solid; background:#F7FBFE; float:left;margin:0;}<br />
.bigBox .content, .smallBox .content{position:relative;}</p>
<p>/*BIG BOX CSS*/<br />
.bigBox b.bt, .bigBox b.bt b,.bigBox b.bb,.bigBox b.bb b{background-image:url(../../images/bigBoxCorners.gif);background-repeat:no-repeat;display:block;font-size:1px;height:14px;position:relative}</p>
<p>/*Top Left*/<br />
.bigBox, b.bt{left:-1px;top:-1px}<br />
/*Top right*/<br />
.bigBox, b.bt b{background-position:100% -14px;left:2px;top:0} /*background-position:100% ()put height corners with negative sign); left: (Adjust depending on image);top:0(Adjust depending on image)*/<br />
/*bottom left*/<br />
.bigBox, b.bb{background-position:0 -28px;left:-1px;top:1px}  /*background-position:100% ()put height corners*2 with negative sign); left: (Adjust depending on image);top:0(Adjust depending on image)*/<br />
/*bottom right*/<br />
.bigBox, b.bb b{background-position:100% -42px;left:2px;top:0} /*background-position:100% ()put heightcorners*3 with negative sign); left: (Adjust depending on image);top:0(Adjust depending on image)*/</p>
<p>then, just call your box in the html:</p>
<p>hey this is a rounded simple box!</p>
<p>looks pretty and simple :P!</p>
<p>(don&#8217;t forget vreate oyur own images)</p>
<p>cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manuel</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-913</link>
		<dc:creator>Manuel</dc:creator>
		<pubDate>Tue, 17 Feb 2009 10:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-913</guid>
		<description>i forget: and in the body put:

   &lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;
   
  ertretretret
  &lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt; </description>
		<content:encoded><![CDATA[<p>i forget: and in the body put:</p>
<p>   <b></b><b></b></p>
<p>  ertretretret<br />
  <b></b><b></b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manuel</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-912</link>
		<dc:creator>Manuel</dc:creator>
		<pubDate>Tue, 17 Feb 2009 10:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-912</guid>
		<description>i don&#039;t know why, but copy and paste doesn&#039;t work to me, so then i went just for the USA site and took the code from there and works :P!! here you go:


   &lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;
   
  ertretretret
  &lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt; 



.leftbox{border:#ddd 3px solid;float:left;margin:0;width:41em}

b.bt,b.bt b,b.bb,b.bb b{background-image:url(i/grey.gif);background-repeat:no-repeat;display:block;font-size:1px;height:10px;position:relative}
b.bt{left:-3px;top:-3px}
b.bt b{background-position:100% -10px;left:6px;top:0}
b.bb{background-position:0 -20px;left:-3px;top:3px}
b.bb b{background-position:100% -30px;left:6px;top:0}



that&#039;s it, enjoy my friends this great idea ;)</description>
		<content:encoded><![CDATA[<p>i don&#8217;t know why, but copy and paste doesn&#8217;t work to me, so then i went just for the USA site and took the code from there and works :P!! here you go:</p>
<p>   <b></b><b></b></p>
<p>  ertretretret<br />
  <b></b><b></b> </p>
<p>.leftbox{border:#ddd 3px solid;float:left;margin:0;width:41em}</p>
<p>b.bt,b.bt b,b.bb,b.bb b{background-image:url(i/grey.gif);background-repeat:no-repeat;display:block;font-size:1px;height:10px;position:relative}<br />
b.bt{left:-3px;top:-3px}<br />
b.bt b{background-position:100% -10px;left:6px;top:0}<br />
b.bb{background-position:0 -20px;left:-3px;top:3px}<br />
b.bb b{background-position:100% -30px;left:6px;top:0}</p>
<p>that&#8217;s it, enjoy my friends this great idea ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Honour Chick</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-910</link>
		<dc:creator>Honour Chick</dc:creator>
		<pubDate>Thu, 05 Feb 2009 22:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-910</guid>
		<description>great tutorial... thxs :)</description>
		<content:encoded><![CDATA[<p>great tutorial&#8230; thxs :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valamas</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-907</link>
		<dc:creator>Valamas</dc:creator>
		<pubDate>Sat, 31 Jan 2009 10:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-907</guid>
		<description>Most fantastic solution to corners. I have hunted through many examples and this one takes the cake.

HTML CORRECTION
The example is incorrect as Carlos identified.
The html should be as follows. (Note because html may not be allowed, each line is a tag which should be surround by greater/less than symbols except for line &quot;your content&quot;).

b class=&quot;bt&quot;
/b
b
/b
[your content]
b class=&quot;bb&quot;
/b
b
/b

P.s, works in IE7 and FF2.
P.s.s, like how you used a B tag. 

thank you for sharing this!</description>
		<content:encoded><![CDATA[<p>Most fantastic solution to corners. I have hunted through many examples and this one takes the cake.</p>
<p>HTML CORRECTION<br />
The example is incorrect as Carlos identified.<br />
The html should be as follows. (Note because html may not be allowed, each line is a tag which should be surround by greater/less than symbols except for line &#8220;your content&#8221;).</p>
<p>b class=&#8221;bt&#8221;<br />
/b<br />
b<br />
/b<br />
[your content]<br />
b class=&#8221;bb&#8221;<br />
/b<br />
b<br />
/b</p>
<p>P.s, works in IE7 and FF2.<br />
P.s.s, like how you used a B tag. </p>
<p>thank you for sharing this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Santhosh</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-906</link>
		<dc:creator>Santhosh</dc:creator>
		<pubDate>Fri, 23 Jan 2009 23:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-906</guid>
		<description>There is an issue with the sample markup you have posted and due to that it is rounding only the left sides but not right sides.  

Instead of 

&lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;[your content]&lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;  

it should have been

# &lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;[your content]&lt;b&gt;&lt;/b&gt;&lt;b&gt;&lt;/b&gt;

However thank for the idea.  It works great.</description>
		<content:encoded><![CDATA[<p>There is an issue with the sample markup you have posted and due to that it is rounding only the left sides but not right sides.  </p>
<p>Instead of </p>
<p><b></b><b></b>[your content]<b></b><b></b>  </p>
<p>it should have been</p>
<p># <b></b><b></b>[your content]<b></b><b></b></p>
<p>However thank for the idea.  It works great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Thompson</title>
		<link>http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/comment-page-1/#comment-905</link>
		<dc:creator>Jeff Thompson</dc:creator>
		<pubDate>Fri, 23 Jan 2009 17:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tillett.info/2007/09/11/orb-fluid-css-one-image-round-borders/#comment-905</guid>
		<description>For me, only the left corners (top and bottom) are rounded.   both right corners are not rounded but square.  I just did a cut and paste job here.  did i miss something?</description>
		<content:encoded><![CDATA[<p>For me, only the left corners (top and bottom) are rounded.   both right corners are not rounded but square.  I just did a cut and paste job here.  did i miss something?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
