<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Oriol Valldeperas Blog &#187; Articulos</title>
	<atom:link href="http://oriolvalldeperas.com/blog/category/articulos/feed/" rel="self" type="application/rss+xml" />
	<link>http://oriolvalldeperas.com/blog</link>
	<description>Graphic Design + Illustration</description>
	<lastBuildDate>Wed, 30 Sep 2009 12:20:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS3 Rounded Corners for all browsers</title>
		<link>http://oriolvalldeperas.com/blog/2009/css3-rounded-corners/</link>
		<comments>http://oriolvalldeperas.com/blog/2009/css3-rounded-corners/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:07:18 +0000</pubDate>
		<dc:creator>Valldeperas</dc:creator>
				<category><![CDATA[Articulos]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[border-radius]]></category>
		<category><![CDATA[corner-radius]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[rounded]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://oriolvalldeperas.com/blog/?p=118</guid>
		<description><![CDATA[Well, this post will be a simple tutorial of how to make rounded corners on your blog or website using css. I’ve searching for that on the Internet in order to apply it on this blog, and I found some solutions, but I wanted a simple one.
So, first Ithere are the simpe tutorials that explains [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Foriolvalldeperas.com%2Fblog%2F2009%2Fcss3-rounded-corners%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Foriolvalldeperas.com%2Fblog%2F2009%2Fcss3-rounded-corners%2F" height="61" width="51" /></a></div><p>Well, this post will be a simple tutorial of how to make rounded corners on your blog or website using css. I’ve searching for that on the Internet in order to apply it on this blog, and I found some solutions, but I wanted a simple one.</p>
<p>So, first Ithere are the simpe tutorials that explains you that you can do it with corner images but there are more simple ways. There’s a simple standard property, but it doesn’t work with all the browser. Each browser have a property to do it in CSS:</p>
<h2>Standard:</h2>
<pre>.rounded-corners
{
border-radius: 10px;
}</pre>
<p>And, in order to add diffrent values in each corners:</p>
<pre>.rounded-corners
{
border-top-right-radius = 10px;
border-bottom-right-radius = 10px;
border-bottom-left-radius = 10px;
border-top-left-radius = 10px;
}</pre>
<h2>Firefox:</h2>
<p>Properties for firefox start with the prefix: -moz. Here we have the short way to add a property to all the corners:</p>
<pre>.rounded-corners
{
-moz-border-radius: 10px;
}</pre>
<p>And the full way:</p>
<pre>.rounded-corners
{
-moz-border-radius-topright = 10px;
-moz-border-radius-bottomright = 10px;
-moz-border-radius-bottomleft = 10px;
-moz-border-radius-topleft = 10px;
}</pre>
<h2>Internet Explorer:</h2>
<p>Only for IE 8 and higher. Short way:</p>
<pre>.rounded-corners
{
-ms-border-radius: 10px;
}</pre>
<p>Full way:</p>
<pre>.rounded-corners
{
-ms-border-radius-topleft: 10px;
-ms-border-radius-topright: 10px;
-ms-border-radius-bottomleft: 10px;
-ms-border-radius-bottomright: 10px;
}</pre>
<h2>Safari and Webkit:</h2>
<p>Short way:</p>
<pre>.rounded-corners
{
-webkit-border-radius: 10px;
}</pre>
<p>Full code:</p>
<pre>.rounded-corners
{
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-webkit-border-top-left-radius: 10px;
}</pre>
<p>For Opera and other browsers <a href="http://www.clubdesarrolladores.com/articulos/mostrar/43-esquinas-redondeadas-round-corners-en-todos-los-navegadores">there’s other ways to do it</a>.</p>
<h2>All browsers:</h2>
<p>So, in oreder to implement the property to all browsers you should have something like this in your stylesheet:</p>
<pre>.rounded-corners
{
border-radius: 10px;
-ms-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
}</pre>
<p>And, to apply differnt values in each corner tu can do things like this:</p>
<pre>.rounded-corners
{
border-radius: 10px 0 2em 4pt;
-ms-border-radius: 10px 0 2em 4pt;
-moz-border-radius: 10px 0 2em 4pt;
-webkit-border-radius: 10px 0 2em 4pt;
-khtml-border-radius: 10px 0 2em 4pt;
}</pre>
<p>Important: in order to work correctly in Safari, I reomend you to use the decomposed way of the code to apply different values in each corner. I say that because I had problems trying to get it work in my blog until I decided to put it in the full way for Safari.</p>
<p>So simply you need to add the above lines in your elements css, sou, if you have #div, you may put this lines it will be the same but with your “#div name” instead of “.rounded-corners”</p>
<p>We wish some day we will have more standards so this way we won’t need to apply all this different codes, but well, it is so simple this way in comprarision with the image-corner’s option.</p>
<p>Font: <a href="http://www.clubdesarrolladores.com">ClubDesarrolladores</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://oriolvalldeperas.com/blog/2009/css3-rounded-corners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buenas wordpress</title>
		<link>http://oriolvalldeperas.com/blog/2008/buenas-wordpress/</link>
		<comments>http://oriolvalldeperas.com/blog/2008/buenas-wordpress/#comments</comments>
		<pubDate>Wed, 14 May 2008 19:54:20 +0000</pubDate>
		<dc:creator>Valldeperas</dc:creator>
				<category><![CDATA[Articulos]]></category>
		<category><![CDATA[1]]></category>
		<category><![CDATA[buenas]]></category>
		<category><![CDATA[hola]]></category>
		<category><![CDATA[primer]]></category>
		<category><![CDATA[primer post]]></category>
		<category><![CDATA[welcome]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://valldeperas.hosteando.org/?p=3</guid>
		<description><![CDATA[
Bueno, pues me he decidido a hacer un blog, para, en parte, y supongo que en su totalidad, mostrar cosas que vaya haciendo buenas y malas, grandes y pequeñas, de todo un poco, dibujos poco agraciados hechos en clase (aka comodines), animaciones Flash, After effects, diseño de logotipos layouts etc. En definitiva todo lo que [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Foriolvalldeperas.com%2Fblog%2F2008%2Fbuenas-wordpress%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Foriolvalldeperas.com%2Fblog%2F2008%2Fbuenas-wordpress%2F" height="61" width="51" /></a></div><p><img src="http://img517.imageshack.us/img517/3016/buenaswordpressdp7.png" alt="Oriol Valldeperas in Wordpress" width="216" height="149" /></p>
<p>Bueno, pues me he decidido a hacer un blog, para, en parte, y supongo que en su totalidad, mostrar cosas que vaya haciendo buenas y malas, grandes y pequeñas, de todo un poco, dibujos poco agraciados hechos en clase (aka comodines), animaciones Flash, After effects, diseño de logotipos layouts etc. En definitiva todo lo que haga, que pueda tener un mínimo valor estético.</p>
<p>Conp el tiempo alomejor también me animo a colgar cosas del rollo, reviews de programas, y cosas así útiles para alguien, quien sabe.</p>
<p>Dudava entre hacer el blog en Blogger o en Wordpress, pero eso fue antes de hacer un blog con el primero, creo que Wordpress ofrecia mas libertad tanto en contenido como en diseño del propio blog.En cuanto al theme del blog, he pillado un tal.. Mandigo que es majo, y con algun tiempo me he dedicado a customizar unos mínimos, básicamente el header, donde podemos ver ese logo mio tan cool, y esa mano mia tan tope de cool.</p>
<p>Pues aquí se queda mi primer post que cerraré con&#8230; un adiós (hasta pronto)</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://oriolvalldeperas.com/blog/2008/buenas-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
