<?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>WebEstudio :: Blog de Diseño Web &#187; PROGRAMACIÓN</title>
	<atom:link href="http://www.jorgebravo.es/category/programacion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jorgebravo.es</link>
	<description>Profesionales más creativos XHTML + CSS + PHP + Flash</description>
	<lastBuildDate>Sat, 06 Aug 2011 11:16:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>How to: Uso de los custom fields de WordPress</title>
		<link>http://www.jorgebravo.es/2011/02/how-to-uso-de-los-custom-fields-de-wordpress/</link>
		<comments>http://www.jorgebravo.es/2011/02/how-to-uso-de-los-custom-fields-de-wordpress/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 08:41:05 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[BLOG]]></category>
		<category><![CDATA[DESTACADOS]]></category>
		<category><![CDATA[DISEÑO]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WORDPRESS]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Webmasters]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=502</guid>
		<description><![CDATA[Para este tutorial usaremos el ejemplo más sencillo que hay para &#8220;custom fields&#8221; que es el de la imágenes de vista previa de nuestros post, con estas imágenes podemos dar un aspecto personalizado a nuestros themes y jugar mucho más con el diseño de nuestro sitio. Entonces definimos en la etiqueta Name y la llamamos [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2011%2F02%2Fhow-to-uso-de-los-custom-fields-de-wordpress%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p style="text-align: center;"><img class="aligncenter size-full wp-image-504" title="custom-fields-post" src="http://www.jorgebravo.es/wp-content/uploads/2010/12/custom-fields-post.jpg" alt="custom-fields-post" width="500" height="242" /></p>
<p>Para este tutorial usaremos el ejemplo más sencillo que hay para &#8220;custom fields&#8221; que es el de la imágenes de vista previa de nuestros post, con estas imágenes podemos dar un aspecto personalizado a nuestros themes y jugar mucho más con el diseño de nuestro sitio.<br />
<span id="more-502"></span><br />
Entonces definimos en la etiqueta <span style="color: #993300;"><strong>Name</strong> </span>y la llamamos <strong>thumbnail</strong> y en <span style="color: #993300;"><strong>value</strong> </span>ponemos la<strong> url completa de la imagen</strong> que queremos mostrar&#8230; nos quedaría algo así</p>
<p><img class="aligncenter size-full wp-image-505" title="custom-img" src="http://www.jorgebravo.es/wp-content/uploads/2010/12/custom-img.gif" alt="custom-img" width="500" height="174" /></p>
<p>Hacemos click en el botón <strong>Add custom field </strong>y veremos cómo se agrega en la parte de arriba</p>
<p>Ok, ya tenemos definido el custom field, ya le hemos asignado nombre y  valor&#8230; ahora viene la parte interesante ¿cómo lo mostramos en  WordPress? bien, vamos a abrir nuestro archivo <strong>index.php</strong> de nuestro  theme y agregamos la siguiente línea después del while&#8230;</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//Loop de WordPress</span><br />
<span style="color: #000088;">$thumbnail</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;thumbnail&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$single</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<p>Lo que hacemos aquí es asignarle a la variable <strong>$thumbnail</strong> el valor del &#8220;meta&#8221; ó custom field llamado &#8220;thumbnail&#8221; es más simple de lo que parece.</p>
<p>Ahora finalmente lo que hacemos es integrarlo dentro de nuestro theme de la siguiente manera para que todo funcione correctamente y en caso de no haber imagen para mostrar que muestre una imagen de sustitución que nosotros queramos.</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$thumbnail</span> <span style="color: #339933;">!==</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><br />
&nbsp; &nbsp; &lt;img class=&quot;thumbnail&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$thumbnail</span><span style="color: #339933;">;</span> ?<span style="color: #339933;">/&gt;</span><span style="color: #0000ff;">&quot; width=&quot;</span><span style="color: #cc66cc;">120</span><span style="color: #0000ff;">&quot; height=&quot;</span><span style="color: #cc66cc;">120</span><span style="color: #0000ff;">&quot; alt=&quot;</span><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title_attribute<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;<br />
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> &nbsp;<span style="color: #000000; font-weight: bold;">?&gt;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp;&lt;!-- SI ESTA VACIO O NO EXISTE --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp;&lt;img class=&quot;thumbnail&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> ?<span style="color: #339933;">/&gt;/</span>images<span style="color: #339933;">/</span>nopreview<span style="color: #339933;">.</span>png<span style="color: #0000ff;">&quot; width=&quot;</span><span style="color: #cc66cc;">120</span><span style="color: #0000ff;">&quot; height=&quot;</span><span style="color: #cc66cc;">120</span><span style="color: #0000ff;">&quot; alt=&quot;</span><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title_attribute<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;<br />
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<p>Muy sencillo como pueden ver y seguro que si buscamos más ejemplos en Google podemos encontrar muchísimos más y más completo, el fin de esta guía es simplemente mostrar la funcionalidad para que vosotros mismos podáis ampliar esta idea a vuestros propios proyectos.</p>
<p><strong>Ejemplos:</strong></p>
<p>En Vectoralia: <a target="_blank" href="http://vectoralia.com/custom_fields/" target="_blank" >hay un tutorial</a> de como crear una guía de contacto usando custom fields y algunos plugins.</p>
<p>Bueno y como este muchos más, un saludo chicos y espero vuestros comentarios.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2011/02/how-to-uso-de-los-custom-fields-de-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>USBWebserver 8, Apache + PHP y MySQL todo en uno y portable.</title>
		<link>http://www.jorgebravo.es/2010/08/usbwebserver-8-apache-php-y-mysql-todo-en-uno-y-portable/</link>
		<comments>http://www.jorgebravo.es/2010/08/usbwebserver-8-apache-php-y-mysql-todo-en-uno-y-portable/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 08:40:24 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[APACHE]]></category>
		<category><![CDATA[DESTACADOS]]></category>
		<category><![CDATA[GUÍAS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[SOFTWARE]]></category>
		<category><![CDATA[PHPAMP para USB]]></category>
		<category><![CDATA[USBAMP]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=473</guid>
		<description><![CDATA[Muy interesante la aplicación USBWebServer 8 un pequeño sistema que apenas ocupa 32MB, donde tendrás una solución de Apache-MySQL-PHP listo para usar. Esto se hace ideal para instalarlo en nuestro pendrive o en CD-R para presentaciones de webs, sistemas PHP o cualquier cosa que se te ocurra. Sólo se requiere un pendrive con un mínimo [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2010%2F08%2Fusbwebserver-8-apache-php-y-mysql-todo-en-uno-y-portable%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p style="text-align: center;"><img class="aligncenter size-full wp-image-475" title="cab-USBWEBSRVER" src="http://www.jorgebravo.es/wp-content/uploads/2010/08/cab-USBWEBSRVER.jpg" alt="cab-USBWEBSRVER" width="500" height="242" /></p>
<p>Muy interesante la aplicación <a target="_blank" href="http://www.usbwebserver.net/en/" target="_blank">USBWebServer 8</a> un pequeño<a target="_blank" href="http://www.madrimasd.org/blogs/softwarelibre/2007/01/26/58170"> </a> sistema que apenas ocupa <tt>32MB</tt>, donde tendrás una solución de   <a target="_blank" title="www.uwamp.com" href="http://www.uwamp.com/" target="_blank">Apache-MySQL-PHP</a> listo para usar.</p>
<p>Esto se hace ideal para instalarlo en nuestro pendrive o en CD-R para  presentaciones de webs, sistemas PHP o cualquier cosa que se te ocurra.  Sólo se requiere un pendrive con un mínimo de <tt>32MB</tt>, <a target="_blank" href="http://es.php.net/">PHP</a> (El autor usa 5.0.3 sin problemas),  <a target="_blank" href="http://httpd.apache.org/">Apache</a> (2.0.50) y <a target="_blank" href="http://www.mysql.com/">MySQL</a>. <a target="_blank" title="Notepad++" href="http://notepad-plus-plus.org/es/node/66" target="_blank">Un buen editor de textos</a>,   preparar los ficheros de configuración y listo.<span id="more-473"></span>No hay que hacer absolutamente nada mas que seguir las instrucciones del  instalador y ya tenemos nuestro servidor listo para llevar a todas partes en nuestros pendrive para realizar presentaciones o demostraciones de nuestros programas sin necesidad de que tengamos una conexión a Internet.</p>
<p>Sin duda una interesante idea para todos aquellos que trabajan con   sistemas <a target="_blank" href="http://www.wampserver.com/">WAMP</a>, <a target="_blank" href="http://www.apachefriends.org/es/xampp.html">XAMPP</a> o <a target="_blank" href="http://www.onlamp.com/">LAMP</a>, que tienen ahora una alternativa  más rápida, <strong>Descarga:</strong> <a target="_blank" href="http://www.usbwebserver.net/en/" target="_blank">USBWebServer 8</a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">愼栠敲㵦栢瑴㩰⼯睷⹷慭牤浩獡⹤牯⽧汢杯⽳潳瑦慷敲楬牢⽥〲㜰〯⼱㘲㔯ㄸ〷㸢慂瑳湡整椠瑮牥獥湡整氠⁡灡楬慣楣돃⁮单䅂偍‬湵瀠煥敵뇃⁯⼼㹡‍楳瑳浥⁡畱⁥灡湥獡漠畣慰㰠瑴㌾䴲㱂琯㹴‬潤摮⁥整摮慲⁳湵⁡潳畬楣돃⁮敤ഠ䄠慰档ⵥ祍兓ⵌ䡐⁐楬瑳⁯慰慲甠慳⹲戼㹲ഊ㰠牢ਾ獅潴猠⁥慨散椠敤污瀠牡⁡湩瑳污牡潬攠⁮畮獥牴⁯数摮楲敶漠攠⁮䑃刭瀠牡ൡ瀠敲敳瑮捡潩敮⁳敤眠扥ⱳ猠獩整慭⁳䡐⁐⁯畣污畱敩⁲潣慳焠敵猠⁥整漠畣牲⹡‍썓河⁯敳爠煥極牥⁥湵瀠湥牤癩⁥潣⁮湵洠귃楮潭搠⁥琼㹴㈳䉍⼼瑴ⰾ㰠⁡牨晥∽瑨灴⼺支⹳桰⹰敮⽴㸢䡐㱐愯‾䔨⁬畡潴⁲獵⁡⸵⸰″楳⁮牰扯敬慭⥳ബ㰠⁡牨晥∽瑨灴⼺栯瑴摰愮慰档⹥牯⽧㸢灁捡敨⼼㹡⠠⸲⸰〵 ⁹愼栠敲㵦栢瑴㩰⼯睷⹷祭煳⹬潣⽭㸢祍兓㱌愯⸾唠⁮畢湥㰠⁡牨晥∽瑨灴⼺眯睷昮潬⵳牦敥慷敲挮⽨潮整慰㉤栮浴≬放楤潴⁲敤琠硥潴㱳愯ⰾഠ瀠敲慰慲⁲潬⁳楦档牥獯搠⁥潣普杩牵捡썩溳礠氠獩潴㰮牢ਾ‍戼㹲䄊畱귃琠湥浥獯氠⁡敤捳牡慧搠汥㰠⁡牨晥∽瑨灴⼺眯睷昮物灥条獥漮杲瀯扵楬⽣桰彰獵⹢楺≰倾偈䵁⁐慰慲唠䉓⼼㹡㰮牢ਾ‍戼㹲䌊敲浡獯甠慮挠牡数慴氠慬慭慤瀠牤癩⁥漭挠浡楢浡獯氠獯映捩敨潲⁳敤ഠ挠湯楦畧慲楣돃⁮灡湵慴摮⁯污渠浯牢⁥畱⁥畱牥浡獯‭潣楰浡獯倠偈‬祍兓⁌⁹‍灁捡敨攠⁮獥慴挠牡数慴礠挠敲浡獯氠獡挠牡数慴⁳戼眾睷⼼㹢礠㰠㹢敳獳⼼㹢‮‍敄敢썲憭焠敵慤⁲污潧愠썳㪭戼㹲ഊ㰠牢ਾ‍甤扳⼺戼㹲ഊⴠⴭⴭⴭⴭⴭⴭ瑳牡⹴慢㱴牢ਾ‍ⴭⴭⴭⴭⴭⴭ瀭牤癩⽥戼㹲ഊⴠⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ瀭灨椮楮戼㹲ഊⴠⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ猭慴瑲瀮灨戼㹲ഊⴠⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ愭慰档ⵥ⸲⸰〵㰯牢ਾ‍ⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ桰⵰⸵⸰⼳戼㹲ഊⴠⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ洭獹汱㰯牢ਾ‍ⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ睷⽷戼㹲ഊⴠⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭⴭ猭獥⽳戼㹲ഊഠ㰠牢ਾ煁썵₭整敮潭⁳潬⁳楦档牥獯搠⁥潣普杩牵捡썩溳搠⁥橥浥汰㩯攠⁬愼栠敲㵦栢瑴㩰⼯睷⹷楦敲慰敧⹳潣⹭畡瀯灨畟扳栮瑴摰挮湯⹦瑨≭栾瑴摰挮湯㱦愯ⰾ‍汥㰠⁡牨晥∽瑨灴⼺眯睷昮物灥条獥挮浯愮⽵桰彰獵⹢桰⹰湩⹩瑨≭瀾灨椮楮⼼㹡ബ㰠⁡牨晥∽瑨灴⼺眯睷昮物灥条獥挮浯愮⽵桰彰獵⹢瑳牡⹴桰⹰瑨≭猾慴瑲瀮灨⼼㹡‍⁹汥㰠⁡牨晥∽瑨灴⼺眯睷昮物灥条獥挮浯愮⽵桰彰獵⹢瑨⍭瑳牡⹴慢≴猾慴瑲戮瑡⼼㹡㰮牢ਾ‍戼㹲匊湩搠摵⁡湵⁡湩整敲慳瑮⁥摩慥瀠牡⁡潴潤⁳煡敵汬獯焠敵琠慲慢慪⁮潣⁮‍楳瑳浥獡㰠⁡牨晥∽瑨灴⼺眯睷眮浡獰牥敶⹲潣⽭㸢䅗偍⼼㹡‬愼栠敲㵦栢瑴㩰⼯睷⹷灡捡敨牦敩摮⹳牯⽧獥砯浡灰栮浴≬堾䵁偐⼼㹡漠㰠⁡牨晥∽瑨灴⼺眯睷漮汮浡⹰潣⽭㸢䅌偍⼼㹡‬畱⁥楴湥湥愠潨慲甠慮愠瑬牥慮楴慶‍썭玡爠ꇃ楰慤‬愼栠敲㵦栢瑴㩰⼯睷⹷楦敲慰敧⹳潣⹭畡瀯灨畟扳栮浴㸢单䅂偍⼼㹡</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2010/08/usbwebserver-8-apache-php-y-mysql-todo-en-uno-y-portable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guía: instertar un editor WYSIWYG con TinyMCE</title>
		<link>http://www.jorgebravo.es/2010/04/guia-instertar-un-editor-wysiwyg-con-tinymce/</link>
		<comments>http://www.jorgebravo.es/2010/04/guia-instertar-un-editor-wysiwyg-con-tinymce/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 08:00:37 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[DESTACADOS]]></category>
		<category><![CDATA[Diseño web]]></category>
		<category><![CDATA[GUÍAS]]></category>
		<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[PROGRAMACIÓN]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[CSS y JavaScript]]></category>
		<category><![CDATA[editor online]]></category>
		<category><![CDATA[TinyMCE]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=414</guid>
		<description><![CDATA[TinyMCE es un editor HTML On-Line que es capaz de convertir los textarea de un formulario en campos WYSIWYG traspasando todo el trabajo a HTML automáticamente. Características Es sencillo de integrar en las páginas web, ya que solo tiene dos líneas de código. Se puede personalizar a través de temas y plugins. También se pueden [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2010%2F04%2Fguia-instertar-un-editor-wysiwyg-con-tinymce%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><img src="http://www.jorgebravo.es/wp-content/uploads/2010/04/cab-post-tiny.jpg" alt="cab-post-tiny" title="cab-post-tiny" width="500" height="242" class="aligncenter size-full wp-image-417" /></p>
<p>TinyMCE es un editor HTML On-Line que es capaz de convertir los textarea de un  formulario en campos WYSIWYG traspasando todo el trabajo a HTML automáticamente.</p>
<p><strong>Características</strong></p>
<ul>
<li>Es sencillo de integrar en las páginas web, ya que solo tiene dos  líneas de código.</li>
<li>Se puede personalizar a través de temas y plugins.</li>
<li>También se pueden instalar paquetes de idiomas.</li>
<li>Es compatible con la mayoría de los navegadores como Firefox,  Internet Explorer,  Opera y Safari, aunque este último esta en fase  experimental.</li>
<li>Con el compresor GZip para PHP/.NET/JSP/Coldfusion, hace  que  TinyMCE  sea un 75% más pequeño y mucho más rápido de cargar.</li>
<li>Se puede utilizar AJAX para guardar y cargar el contenido.</li>
</ul>
<p><span id="more-414"></span><br />
<strong>Integración de TinyMCE</strong></p>
<p>Para poder utilizar TinyMCE es las páginas web, el navegador tiene que  ser compatible y tener Javascript habilitado.</p>
<p>Primero hay de descargar TinyMCE desde la siguiente página de descargas:  <a target="_blank" href="http://tinymce.moxiecode.com/download.php" target="_blank">http://tinymce.moxiecode.com/download.php</a>.  Después hay que descomprimirlo y guardarlo en el servidor de la página  web para poder utilizarlo en los textarea de los formularios.</p>
<p>En la página que se vaya a utilizar, primero hay que incluir la librería  tiny_mce.js incluyendo el archivo externo de código Javascript.</p>
<div class="codecolorer-container javascript dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;javascript&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;/tinymce/jscripts/tiny_mce/tiny_mce.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></div></td></tr></tbody></table></div>
<p>A continuación hay que inicializar TinyMCE para convertir los textarea en campos de texto WYSIWYG editables.</p>
<div class="codecolorer-container javascript dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;javascript&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span><br />
tinyMCE.<span style="color: #660066;">init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; mode <span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;textareas&quot;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; theme <span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;simple&quot;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></div></td></tr></tbody></table></div>
<p><strong>Ejemplo de integración de TinyMCE</strong></p>
<div class="codecolorer-container html4strict dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt; !DOCTYPE HTML PUBLIC <span style="color: #ff0000;">&quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;</span>Ejemplo TinyMCE<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/tinymce/jscripts/tiny_mce/tiny_mce.js&quot;</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">language</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;javascript&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; tinyMCE.init({<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mode : &quot;textareas&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;theme : &quot;advanced&quot;<br />
&nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">head</span>&gt;</span><br />
<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;post&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;tinymce&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;texto&quot;</span> <span style="color: #000066;">cols</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">rows</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;15&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></div></td></tr></tbody></table></div>
<p>En este ejemplo primero hemos incluido la librería tiny_mce.js dentro de las etiquetas <head> . También dentro de estas etiquetas también hemos inicializado TinyMCE para que en el textarea del formulario se convierta en un campo de texto WYSIWYG. </p>
<p>Via: <a target="_blank" href="http://www.desarrolloweb.com/articulos/tinymce.html">Desarrolloweb.com</a></head></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2010/04/guia-instertar-un-editor-wysiwyg-con-tinymce/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Analisis: 5 plugins para generar graficos usando jQuery</title>
		<link>http://www.jorgebravo.es/2010/01/analisis-5-plugins-para-generar-graficos-usando-jquery/</link>
		<comments>http://www.jorgebravo.es/2010/01/analisis-5-plugins-para-generar-graficos-usando-jquery/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 08:40:13 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[BLOG]]></category>
		<category><![CDATA[DISEÑO]]></category>
		<category><![CDATA[Diseño web]]></category>
		<category><![CDATA[JQUERY]]></category>
		<category><![CDATA[PROGRAMACIÓN]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[flot]]></category>
		<category><![CDATA[HighCharts]]></category>
		<category><![CDATA[jqplot]]></category>
		<category><![CDATA[jQuery Visualize]]></category>
		<category><![CDATA[Sparklines]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=389</guid>
		<description><![CDATA[No me había tocado trabajar con grandes cantidades de gráficas generadas de manera dinámica en una web, pero en un proyecto relacionado con un backend para una aplicación on-line salto la idea de poder obtener ciertos datos estadísticos de manera dinámica y vistos en forma de gráficas. Y pensando en la manera de hacer esto [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2010%2F01%2Fanalisis-5-plugins-para-generar-graficos-usando-jquery%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p style="text-align: center;"><img class="aligncenter size-full wp-image-392" title="graficas" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/graficas.png" alt="graficas" width="500" height="242" /></p>
<p>No me había tocado trabajar con grandes cantidades de gráficas generadas de manera dinámica en una web, pero en un proyecto relacionado con un backend para una aplicación on-line salto la idea de poder obtener ciertos datos estadísticos de manera dinámica y vistos en forma de gráficas.</p>
<p>Y pensando en la manera de hacer esto de una forma mas menos organizada y tratando de usar solo un paquete, en un momento pense en varias opciones como <strong>php y gd</strong> está <strong>jpGraph</strong>, html como las de Google, o varias en Flash y otras tantas en Javascript. Pero al final me decidí a buscar un plugin para jQuery que es la librería que ocupamos en el proyecto en cuestión.<span id="more-389"></span></p>
<p>Algunas razones, utiliza pocos recursos y se generan en el cliente liberando recursos del servidor, en momentos de máximos de trabajo.</p>
<p>Tuve una grata sorpresa al ver que hay una gran cantidad de plugins para esta tarea tan especifica y ademas de muy buena calidad.</p>
<h2>1.- El primero de la lista es Flot</h2>
<p><img class="alignnone size-full wp-image-393" title="flot" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/flot.jpg" alt="flot" width="485" height="100" /></p>
<p>Flot desarrollado por <strong>Ole Laursen</strong>, es una libreria Javascript para gráficos de lineas usando jQuery. Esta permite crear gráficas del lado del cliente con funciones como el seno, coseno, etc.</p>
<p>Es potente, fácil de implementar y la estética, al igual que en otros productos para jQuery, es muy buena. Le falta soportar gráficos de torta, pero podemos utilizar la modificación de Flot que se encuentra <a target="_blank" href="http://groups.google.com/group/flot-graphs/browse_thread/thread/9b1e73e4025b376c/b56101eb1375d1da?#b56101eb1375d1da">aquí</a>.</p>
<p>Ejemplos: <a target="_blank" href="http://people.iola.dk/olau/flot/examples/">demos</a><br />
Descargar: <a target="_blank" href="http://flot.googlecode.com/files/jquery.flot-0.1.pack.js">jquery.flot-0.1.pack.js</a></p>
<h2>2.- jQuery Visualize – Para crear gráficos accesibles</h2>
<p><img class="alignnone size-full wp-image-394" title="fchart" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/fchart.jpg" alt="fchart" width="485" height="100" /></p>
<p>jQuery Visualize permite crear gráficas accesibles desde una tabla de datos estándar haciendo uso de canvas. Se pueden crear varios tipos de gráficas como: torta (pie), lineal, área y de barras.</p>
<p>En su sitio podemos encontrar ejemplos muy bien explicados (en ingles). Muy funcional, práctico y sencillo de implementar, jQuery Visualize, una excelente opción.</p>
<p>Sitio: <a target="_blank" href="http://www.filamentgroup.com/lab/creating_accessible_charts_using_canvas_and_jquery/">Filament Group</a></p>
<h2>3.- HighCharts &#8211; Completo sistema de gráficas</h2>
<p><img class="alignnone size-full wp-image-395" title="hishart" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/hishart.jpg" alt="hishart" width="485" height="100" /></p>
<p>HighCharts, uno de los mas completos sitesmas de graficas, este magnifico plugin para jquery incorpora los más conocidos formatos para mostrar graficas y con una presentación impecable. Animaciones y colores realmente agradables, todo esto con muy bajo consumo.</p>
<p>Sitio: <a target="_blank" href="http://www.highcharts.com/">HighCharts</a><br />
Ejemplos: <a target="_blank" href="http://www.highcharts.com/demo/" target="_blank">www.highcharts.com/demo/</a></p>
<h2>4.- Sparklines &#8211; Gráficas inline con jQuery</h2>
<p><img class="alignnone size-full wp-image-396" title="spriaklines" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/spriaklines.jpg" alt="spriaklines" width="485" height="100" /></p>
<p>Sparklines es un plugin de jQuery que facilita la creación de gráficos inline. Los datos pueden ser pasados por parámetro o sino a través de funciones JavaScript.</p>
<p>Dispone de una buena cantidad de tipos de gráficos y en su sitio a pesar de estar en Ingles esta muy bien documentado.</p>
<p>Sitio: <a target="_blank" href="http://omnipotent.net/jquery.sparkline/">Sparklines</a><br />
Descarga: <a target="_blank" href="http://omnipotent.net/jquery.sparkline/">jQuery Sparklines</a></p>
<h2>5.- jqPlot – Gráficos Profesionales con jQuery</h2>
<p><img class="alignnone size-full wp-image-397" title="jqPlot" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/jqPlot.jpg" alt="jqPlot" width="485" height="100" /></p>
<p>jqPlot tambien usa la canvas para generar los gráficas, posee multiples funcionalidades como &#8211; Gráficos de Torta &#8211; Entradas para una pares de datos X/Y &#8211; Entradas para series de datos x1,x2,… &#8211; Series de Datos Multiples &#8211; Multiples ejes Y &#8211; Gráficos Logaritmicos &#8211; Ejes con fechas etc&#8230;</p>
<p>Las imagenes generadas son de gran calidad y con muy buena presentación. Buenos colores, no están muy cargados y lo mejor es muy simple de usar.</p>
<p>Sitio: <a target="_blank" href="http://go2.wordpress.com/?id=725X1342&amp;site=hackelare.wordpress.com&amp;url=http%3A%2F%2Fwww.jqplot.com%2Findex.php">Web Oficial jqPlot</a><br />
Ejemplos: <a target="_blank" href="http://go2.wordpress.com/?id=725X1342&amp;site=hackelare.wordpress.com&amp;url=http%3A%2F%2Fwww.jqplot.com%2Ftests%2F">jqPlot</a></p>
<p>Bien finalmente la decisión es de ustedes hay para todos los gustos y colores. Todo dependerá de lo que esperemos conseguir como resultado.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2010/01/analisis-5-plugins-para-generar-graficos-usando-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Enviar mensaje a Twitter usando su API y un poco de PHP.</title>
		<link>http://www.jorgebravo.es/2010/01/enviar-mensaje-a-twitter-usando-su-api-y-un-poco-de-php/</link>
		<comments>http://www.jorgebravo.es/2010/01/enviar-mensaje-a-twitter-usando-su-api-y-un-poco-de-php/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 15:22:16 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[BLOG]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PROGRAMACIÓN]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=327</guid>
		<description><![CDATA[Si tienes algun proyecto o simplemente te interesa saber como funciona un poco la API de Twitter este es tu tutorial. Vamos a personalizar un mensaje usando PHP y el API de Twitter para luego plubicarlo. En realidad es algo muy sencillo y solo vamoa utilizar un par de lineas de codigo nada muy complejo, [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2010%2F01%2Fenviar-mensaje-a-twitter-usando-su-api-y-un-poco-de-php%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><img class="aligncenter size-full wp-image-333" title="twitter-api" src="http://www.jorgebravo.es/wp-content/uploads/2010/01/twitter-api.png" alt="twitter-api" width="500" height="242" /></p>
<p>Si tienes algun proyecto o simplemente te interesa saber como funciona un poco la API de Twitter este es tu tutorial. Vamos a personalizar un mensaje usando PHP y el API de Twitter para luego plubicarlo.</p>
<p>En realidad es algo muy sencillo y solo vamoa utilizar un par de lineas de codigo nada muy complejo, pero nos servira como introducción.<span id="more-327"></span></p>
<p>Para el siguiente ejemplo usaremos dos archivos PHP.</p>
<p># insertarMensaje.php ( contiene la interface de nuestro ejemlo )<br />
# twitterApi.php ( contiene el codigo nesesario para usar el API )</p>
<p>Bien manos a la obra el codigo explicado y los parametros de configuración:</p>
<p>En primer lugar en el archivo <strong>insertarMensaje.php</strong> tenemos que modificar dos parámetros:<br />
<strong>$twitter_user</strong>, con tu nombre de usuario de Twitter y <strong>$twitter_psw</strong>, con tu contraseña de Twitter.</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> ?php<br />
<span style="color: #666666; font-style: italic;">// parametros de configuración</span><br />
<span style="color: #666666; font-style: italic;">/* ---------------------------------------- */</span><br />
<span style="color: #000088;">$twitter_user</span> <span style="color: #339933;">=</span><span style="color: #0000ff;">'tuUsuario'</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$twitter_psw</span> <span style="color: #339933;">=</span><span style="color: #0000ff;">'tuPassword'</span><span style="color: #339933;">;</span><br />
<span style="color: #666666; font-style: italic;">/* ---------------------------------------- */</span></div></td></tr></tbody></table></div>
<p>/* Esto lo dejamos tal cual<br />
/* &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- */<br />
require(&#8216;twitterApi.php&#8217;);</p>
<p>if(isset($_POST['twitter_msg'])){<br />
$twitter_msge=$_POST['twitter_msg'];<br />
if( strlen($twitter_msge)&lt;1 ){<br />
$error = 1;<br />
} else {<br />
$twitter_status = postToTwitter($twitter_user, $twitter_psw, $twitter_msge);<br />
}<br />
}<br />
?&gt;</p>
<p>Bien la parte que esta comentada indica donde esta el codigo PHP que no debemos tocar y que es el que procesa la instrucción.</p>
<p>El siguiente es el codigo de nuestra interface donde ponemos nuestro mensaje a Twitter.<br />
Como veran es muy basico y solo contiene un par de lineas de PHP para verificar si ha habido un error en el mensaje.</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> ?php <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'twitter_msg'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #339933;">!</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$error</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<div class="msg">&lt; ?php echo $twitter_status ?&gt;</div>
<p>&lt; ?php } else if(isset($error)){?&gt;</p>
<div class="msg">Error: nuestro mensaje de error!</div>
<p>&lt; ?php }?&gt;</p>
<p><strong>¿Que estas haciendo?</strong></p>
<form action="insertarMensaje.php" method="post">
<input id="twitter_msg" maxlength="140" name="twitter_msg" size="40" type="text" />
<input id="button" name="button" type="submit" value="Enviar" /> </form>
<p>Finalmente podemos poner esto en nuestro servidor local o nuestro hosting y probarlo directamente.</p>
<p><strong>Archivos del tutorial:</strong> <a class="downloadlink" href="http://www.jorgebravo.es/wp-content/plugins/download-monitor/download.php?id=3" title="Version0.1 downloaded 248 times" >twitter (248)</a><br />
<strong>Articulo original</strong>: <a target="_blank" title="Antonio Lupetti" href="http://woork.blogspot.com/2007/10/twitter-send-message-from-php-page.html">Antonio Lupetti</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2010/01/enviar-mensaje-a-twitter-usando-su-api-y-un-poco-de-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 plugins jQuery Muy útil para desarrolladores Web</title>
		<link>http://www.jorgebravo.es/2009/10/10-plugins-jquery-muy-util-para-desarrolladores-web/</link>
		<comments>http://www.jorgebravo.es/2009/10/10-plugins-jquery-muy-util-para-desarrolladores-web/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 12:27:28 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[DESTACADOS]]></category>
		<category><![CDATA[Diseño web]]></category>
		<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[JQUERY]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[SCRIPTS]]></category>
		<category><![CDATA[GUÍAS]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=313</guid>
		<description><![CDATA[jQuery como plataforma de desarrollo es grande y vemos el resultado de esto cada día. Casi es difícil de creer pero cada vez que decido buscar un nuevo plugin jQuery para resolver una tarea concreta en mi trabajo me doy cuenta de que la comunidad proporciona constantemente nuevas soluciones de alta calidad de forma gratuita. [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2009%2F10%2F10-plugins-jquery-muy-util-para-desarrolladores-web%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p style="text-align: center;"><img class="aligncenter size-full wp-image-314" title="jquery-plugs" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/jquery-plugs.png" alt="jquery-plugs" width="500" height="242" /></p>
<p>jQuery como plataforma de desarrollo es grande y vemos el resultado de esto cada día. Casi es difícil de creer pero cada vez que decido buscar un nuevo plugin jQuery para resolver una tarea concreta en mi trabajo me doy cuenta de que la comunidad proporciona constantemente nuevas soluciones de alta calidad de forma gratuita.<span id="more-313"></span></p>
<p>El número de contribuciones es muy alto y a mi como desarrollador esto me hace volver cada vez a por más. Supongo que a muchos desarrolladores les ocurrirá algo similar. A veces no somos conscientes del trabajo que todo esto implica y las horas de duro trabajo que conlleva. Muchas gracias a todos por gastar su precioso tiempo en la creación de cosas que todos podemos utilizar.  A continuación una lista de 10 plugins de gran ayuda, que te puedes encontrar actualmente.</p>
<p><a target="_blank" href="http://plugins.jquery.com/project/form-extensions">Form extensions</a><br />
jQuery <strong>Form extensions</strong> es un pequeño plugin para ayudar en forma rapida en las tareas relacionadas con jQuery. Realmente simple, pero para muy útil para cualquier desarrollador, es muy bueno tener a mano para llevar a cabo tareas, especialmente si ya están encapsulados como este.</p>
<p><img class="aligncenter size-full wp-image-315" title="formex" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/formex.jpg" alt="formex" width="625" height="250" /></p>
<p><a target="_blank" href="http://www.geckonewmedia.com/blog/2009/8/20/simplepager---jquery-paging-plugin--updated#comment-1518">SimplePager – jQuery paging plugin</a><br />
La premisa detrás de SimplePager es permitir la creación de la paginación o la configuración con el menor esfuerzo posible. Este plugin localiza los divs, párrafos, elementos de la lista o casi cualquier otro contenido. Simple pero muy poderoso!<br />
<img class="aligncenter size-full wp-image-316" title="pager" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/pager.jpg" alt="pager" width="625" height="250" /></p>
<p>El articulo original se encuentra en Ingles pero para el caso de este tipo de plugins, las guías son muy sencillas de seguir. En todo caso si hay alguno que os interese y necesitan alguna ayuda, postearla aquí en los comentarios para ver si les puedo ayudar de alguna manera.</p>
<p>Via: <a target="_blank" href="http://www.tripwiremagazine.com/tools/design/10-very-useful-jquery-plugins-for-web-developers-i-wasnt-aware-of.html" target="_blank">www.tripwiremagazine.com</a> (Ingles)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2009/10/10-plugins-jquery-muy-util-para-desarrolladores-web/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IDE para desarrollo profesional en PHP + MySQL</title>
		<link>http://www.jorgebravo.es/2009/10/ide-para-desarrollo-profesional-en-php-mysql/</link>
		<comments>http://www.jorgebravo.es/2009/10/ide-para-desarrollo-profesional-en-php-mysql/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 08:00:49 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[DESTACADOS]]></category>
		<category><![CDATA[Diseño web]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PROGRAMACIÓN]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[Entorno de Desarrollo]]></category>
		<category><![CDATA[IDE]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=301</guid>
		<description><![CDATA[A la hora de desarrollar con PHP nos encontramos con que gran cantidad de programadores o diseñadores están usando herramientas como el Dreamweaver, incluso el block de notas de windows, y subiendo y probando sus resultados contra un servidor web. Si bien esto está bastante extendido, obviamente no es la mejor manera de trabajar ni [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2009%2F10%2Fide-para-desarrollo-profesional-en-php-mysql%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><img class="aligncenter size-full wp-image-311" title="ide-php" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/ide-php.png" alt="ide-php" width="500" height="242" /></p>
<p>A la hora de desarrollar con PHP nos encontramos con que gran cantidad de programadores o diseñadores están usando herramientas como el Dreamweaver, incluso el block de notas de windows, y subiendo y probando sus resultados contra un servidor web.</p>
<p>Si bien esto está bastante extendido, obviamente no es la mejor manera de trabajar ni de lejos. Tradicionalmente, PHP no contó con el apoyo total de grandes marcas de software por su gratuidad, algo que no ha impedido su rápida y total expansión entre la comunidad desarrolladora. Esto deriva en grandes ventajas como por ejemplo el precio asequible que tiene contratar un servicio de hosting con PHP + MySQL, en comparación con otras alternativas Java.<span id="more-301"></span></p>
<p>Os propongo aquí algunas herramientas que de seguro harán vuestro trabajo más sencillo y productivo, así como que disminuya de manera radical el tiempo empleado para realizarlo y los errores cometidos.</p>
<p>Comenzaré con la plataforma de implementación y depuración de código. Aquí tenemos dos claros exponentes:</p>
<p><strong>PDT Project (<a target="_blank" title="PHP Eclipse" href="http://www.eclipse.org/pdt/" target="_blank">http://www.eclipse.org/pdt</a>)<br />
</strong></p>
<p>Este es el proyecto de Eclipse para el desarrollo en PHP. Para mí sin duda la aplicación más recomendable de todas. Conocido es de sobra en la comunidad que todo lo desarrollado por Eclipse es garantía de éxito.</p>
<p>Además de incluir la tradicional interfaz que apoya la productividad y corrige numerosos errores, incluye funciones de depuración de código con el Zend Debugger.</p>
<p><img class="aligncenter size-full wp-image-303" title="pdt" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/pdt.jpg" alt="pdt" width="400" height="267" /></p>
<p>Otra opción es el <a target="_blank" title="Zend Studio" href="http://www.zend.com/en/products/studio/" target="_blank"><strong>Zend Studio</strong></a>, también muy conocido y basado en el motor de eclipse. Es una magnífica aplicación para el desarrollo profesional, aunque en este caso es de pago. Incluye capacidades de análisis y optimización de código, depuración y edición avanzada.</p>
<p><img class="aligncenter size-full wp-image-304" title="zend" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/zend.jpg" alt="zend" width="161" height="244" />Tercera opción os propongo <a target="_blank" title="Aptana" href="http://www.aptana.com/" target="_blank"><strong>Aptana</strong></a>, desarrollada también bajo la plataforma Eclipse, y que tiene un gran editor con cosas tan curiosas como son la comprobación en caliente de la compatibilidad de un código entre navegadores.</p>
<p><img class="aligncenter size-full wp-image-305" title="aptana" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/aptana.jpg" alt="aptana" width="237" height="210" /></p>
<p>Más allá de <a target="_blank" href="http://es.wikipedia.org/wiki/WYSIWYG" target="_blank"><span onmouseover="_tipon(this)" onmouseout="_tipoff()"><strong>WYSIWYG</strong></span></a> <a target="_blank" title="TurboPHP" href="http://www.turbophp.com/" target="_blank">TurboPHP</a><span onmouseover="_tipon(this)" onmouseout="_tipoff()"><span style="direction: ltr; text-align: left;"> </span></span><span onmouseover="_tipon(this)" onmouseout="_tipoff()">apoya la presentación de datos dinámica que está más allá del <strong>WYSIWYG</strong>.</span> <span onmouseover="_tipon(this)" onmouseout="_tipoff()"><span style="direction: ltr; text-align: left;"> </span>Como los paneles o bloques de datos se generan en tiempo real, la disposición de ampliar, mantener intacto el diseño</span><span onmouseover="_tipon(this)" onmouseout="_tipoff()"><span style="direction: ltr; text-align: left;">.</span> El enfoque de diseño utiliza las tablas de HTML y estilos CSS para lograr una amplia gama de compatibilidad del navegador, sin secuencias de comandos complejos.</span></p>
<p><span onmouseover="_tipon(this)" onmouseout="_tipoff()"><img class="aligncenter size-full wp-image-306" title="tp4_ide_0_tiny" src="http://www.jorgebravo.es/wp-content/uploads/2009/10/tp4_ide_0_tiny.png" alt="tp4_ide_0_tiny" width="300" height="242" /></span></p>
<p>Por otra parte están los entornos de producción. Desaconsejo totalmente la instalación manual de Apache, PHP y demás. Para ellos hay magníficas soluciones integradas como las siguientes.</p>
<p><a target="_blank" href="http://www.apachefriends.org/es/xampp.html" target="_blank">XAMPP</a> (para Linux y Windows)<br />
<a target="_blank" href="http://www.wampserver.com/en/" target="_blank">WAMP</a> (para Windows) o <a target="_blank" href="http://www.mamp.info/en/index.html" target="_blank">MAMP</a> (para Mac)<br />
<a target="_blank" href="http://www.easyphp.org/" target="_blank">EASYPHP</a> (para Windows)<br />
<a target="_blank" href="http://vertrigo.sourceforge.net/" target="_blank">VERTIGOSERV</a> (para Windows)</p>
<p>Todos estos entornos nos instalan de una sola vez todo lo necesario para comenzar a programar sin problemas, todos incluyen como mínimo ademas detener un pequeño panel de administración desde donde poder hacer cambios en la configuración de Apache y PHP:<br />
Apache 2.2.11<br />
PHP 5.3.0<br />
MySQL 5.1.36<br />
Phpmyadmin<br />
Espero que esto les ayude a mejorar el desarrollo de sus proyector creando un mejor flujo de trabajo.</p>
<p><strong>Via:</strong> <a target="_blank" href="http://www.corpas.info/2007/12/03/desarrollo-profesional-en-php-mysql/trackback/" target="_blank">www.corpas.info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2009/10/ide-para-desarrollo-profesional-en-php-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Menú desplegable con CSS y JavaScript</title>
		<link>http://www.jorgebravo.es/2009/08/menu-desplegable-con-css-y-javascript/</link>
		<comments>http://www.jorgebravo.es/2009/08/menu-desplegable-con-css-y-javascript/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 08:00:15 +0000</pubDate>
		<dc:creator>Jorge Bravo</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[DESTACADOS]]></category>
		<category><![CDATA[DISEÑO]]></category>
		<category><![CDATA[Diseño web]]></category>
		<category><![CDATA[GUÍAS]]></category>
		<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[RECURSOS]]></category>
		<category><![CDATA[CSS y JavaScript]]></category>
		<category><![CDATA[Diseño Web]]></category>
		<category><![CDATA[menus desplegables]]></category>

		<guid isPermaLink="false">http://www.jorgebravo.es/?p=281</guid>
		<description><![CDATA[Hola a todos hoy respondere a un correo con una consulta de un amigo, que me preguntaba por programas para, generar menúes desplegables con CSSy JavaScript. Bien tratare dos puntos antes de comenzar, El primero es que no soy nada partidario de los generadores de menús, uno por que muy sencillo crearlos nosotros mismos, segundo [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.jorgebravo.es%2F2009%2F08%2Fmenu-desplegable-con-css-y-javascript%2F&amp;layout=box_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=65&amp;font=lucida+grande' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><img class="aligncenter size-full wp-image-286" title="stats-menuCSS" src="http://www.jorgebravo.es/wp-content/uploads/2009/08/stats-menuCSS.png" alt="stats-menuCSS" width="500" height="233" /></p>
<p>Hola a todos hoy respondere a un correo con una consulta de un amigo, que me preguntaba por programas para, generar <strong>menúes desplegables con CSSy JavaScript.</strong> Bien tratare dos puntos antes de comenzar,<span id="more-281"></span></p>
<p>El primero es que no soy nada partidario de los generadores de menús, uno por que muy sencillo crearlos nosotros mismos, segundo quedan obsoletos rapidamente ya que internet cambia demasiado a prisa y a menos que el programa se actualice lo veo dificil que aprenda una manera nueva de generar el menu ademas como extra el hecho de suelen generar mucho codigo realmente inecesario.</p>
<p>Punto dos, son las formas que veremos de generar menus desplegables mediante CSS y JavaScript, supongo y doy por hecho de que quienes sigan la guia tendran unos c<strong>onocimientos minimos hacerca de los procedimientos</strong> que realizaremos, ya que si hay que explicar paso a paso cada una de las cosas que haremos el Post se alargaria demasiado, tampoco es la idea de hacer una clase magistral sobre CSS.</p>
<p><strong><em>Nota: </em></strong><em>lo que aqui veamos noes ni mucho menos la mejor de las mejores maneras y tampoco creo que este exenta de errores, tan solo son metodos de trabajo y formas de hacer algo puntual si haceís una busqueda en Google sobre (</em><strong><a target="_blank" href="http://www.google.es/search?rlz=1C1GGLS_esES338ES339&amp;sourceid=chrome&amp;ie=UTF-8&amp;q=menu+desplegable+en+CSS" target="_blank"><em>menu desplegable en CSS</em></a></strong><em>) os aseguro que hay una buena cantidad de guias con las cuales podeís complementar esta pequeña reseña.</em></p>
<p>Luego de esta pequeña intro ons vamos de cabeza al tema que nos trae a la cancha. Primero comenzaremos con los programas para generar menues CSS.</p>
<p><strong>CSS Tab Designer :</strong> Creo que es uno de los más conocidos en esta area y de los que mas se utiliza, lo he probado y cumple perfectamente su cometido sin dejarnos un bodrio muy grande de codigo para su funcionamiento.</p>
<p><strong>Con CSS Tab Designer puedes:</strong></p>
<p>- Diseñar rápidamente tu lista visualmente.<br />
- Elegir una variedad de estilos y colores grande (más de 60 diseños y colores).<br />
- Generar el código final de xhtml con un solo click.</p>
<p><img class="aligncenter size-full wp-image-282" title="CSSTab-Designer" src="http://www.jorgebravo.es/wp-content/uploads/2009/08/CSSTab-Designer.png" alt="CSSTab-Designer" width="271" height="203" /></p>
<p><strong>Enlace de Descarga:</strong> <a target="_blank" title="CSS Tab Designer" href="http://www.highdots.com/css-tab-designer/" target="_blank">CSS Tab Designer</a></p>
<p><strong>PureCSSMenu.com :</strong> Es un generador en línea de menús desplegables del tipo CSS, se ofrece en forma gratuita. Este software es capaz de crear un menú desplegable sin JavaScript, en un 100% en CSS, ofrece menús CSS horizontales y también menús del tipo vertical. El usuario simplemente necesitará realizar tres sencillos pasos para poder construir sus menús CSS.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-283" title="purecssmenu" src="http://www.jorgebravo.es/wp-content/uploads/2009/08/purecssmenu.jpg" alt="purecssmenu" width="336" height="197" /></p>
<p><strong>Enlace de descarga:</strong> <a target="_blank" title="PureCSSMenu" href="http://www.purecssmenu.com/purecssmenu.zip" target="_blank">PureCSSMenu</a></p>
<p><strong>IzzyMenu :</strong> es una aplicación web desarrollada en Ajax que nos permite crear menus css de una manera por demas sencilla. Tiene una lista de diseños predefinidos entre los cuales hay unos muy buenos y que de seguro te serviran para tus diseños y desarrollos web.<br />
Podemos escoger entre crear un menú horizontal y un menú vertical, asi como configurar el tamaño de fuente, el estilo de fuente, color, color de fondo entre muchas otras opciones.</p>
<p><img class="aligncenter size-full wp-image-284" title="menus-css" src="http://www.jorgebravo.es/wp-content/uploads/2009/08/menus-css.jpg" alt="menus-css" width="460" height="208" /></p>
<p><strong>Enlace de descarga:</strong> <a target="_blank" title="IzzyMenu" href="http://www.izzymenu.com/" target="_blank">IzzyMenu</a></p>
<p><strong>CSSmenubuilder.com :</strong> Otra herramienta que además genera código bastante más “limpio”. Su galería de menús predefinidos en mucho más corta pero a cambio podemos modificarlos totalmente sin necesidad de tocar el código.<br />
La única desventaja que le encuentro es que no podemos generar la estructura de enlaces desde la propia herramienta. Aunque tampoco es ningún drama pues la propia herramienta nos permite crearla a mano.</p>
<p><img class="aligncenter size-full wp-image-285" title="CSS Menu Builder" src="http://www.jorgebravo.es/wp-content/uploads/2009/08/CSS-Menu-Builder-.jpg" alt="CSS Menu Builder" width="434" height="219" /></p>
<p><strong>Enlace de descarga:</strong> <a target="_blank" title="CSSMenuBuider.com" href="http://www.cssmenubuilder.com/home" target="_blank">CSSmenubuilder.com</a></p>
<p>Ahora veremos como crear nosotros mismos esto que nos generan estos programas de manera tan sencilla, obiamente tardaremos algo más, pero estoy seguro de que aprenderemos mucho más y lo mas importantes que el limite lo pone nuestra imaginación y no la cantidad de diseño que trae incorporado algun programa. jejejje estuve a punto de decir programa cutre.</p>
<p>Muchas veces, nuestras páginas tienen tantos contenidos que si quisiéramos que apareciesen todos estos en un determinado lugar de nuestra página, en un menú, este abarcaría casi la totalidad del espacio que tenemos para nuestra web. En estos casos es muy útil insertar uno o varios de estos menús desplegables, apareciendo por encima del propio contenido de la página para mostrar todas sus partes y desapareciendo posteriormente.</p>
<p>Preparamos el <strong>codigo CSS</strong> para las cajas del menu</p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">body <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #cc00cc;">#marco</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">455px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #808080; font-style: italic;">/*Creditos: WebEstudio */</span><br />
<span style="color: #6666ff;">.preload2</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">fd_menu.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">repeat-x</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #3333ff;">:arial</span><span style="color: #00AA00;">,</span> verdana<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li.<span style="color: #000000; font-weight: bold;">top</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li a<span style="color: #6666ff;">.top_link</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span><span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">11px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li a<span style="color: #6666ff;">.top_link</span> span <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">40px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li a<span style="color: #6666ff;">.top_link</span> span<span style="color: #6666ff;">.down</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #808080; font-style: italic;">/*background:url(prodrop2/down.gif) no-repeat right top;*/</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li a<span style="color: #6666ff;">.top_link</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span> &nbsp;<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li a<span style="color: #6666ff;">.top_link</span><span style="color: #3333ff;">:hover </span>span <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li a<span style="color: #6666ff;">.top_link</span><span style="color: #3333ff;">:hover </span>span<span style="color: #6666ff;">.down</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">&#125;</span><br />
<br />
<span style="color: #6666ff;">.menu2</span> li<span style="color: #3333ff;">:hover </span>&amp;gt<span style="color: #00AA00;">;</span> a<span style="color: #6666ff;">.top_link</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li<span style="color: #3333ff;">:hover </span>&amp;gt<span style="color: #00AA00;">;</span> a<span style="color: #6666ff;">.top_link</span> span <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li<span style="color: #3333ff;">:hover </span>&amp;gt<span style="color: #00AA00;">;</span> a<span style="color: #6666ff;">.top_link</span> span<span style="color: #6666ff;">.down</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">button4a.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<br />
<span style="color: #6666ff;">.menu2</span> table <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">border-collapse</span><span style="color: #00AA00;">:</span><span style="color: #993333;">collapse</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p>Como pueden ver esta parte no es muy compleja aun  que si un poco extensa.<br />
<strong>Ahora los estilos para los enlaces y el submenu.</strong></p>
<div class="codecolorer-container css dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br /></div></td><td><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #808080; font-style: italic;">/* Estilo por defecto para los links */</span><br />
<span style="color: #808080; font-style: italic;">/* Estilo para link hover. Dependiendo del navegador que se use */</span><br />
<br />
<span style="color: #6666ff;">.menu2</span> a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">visibility</span><span style="color: #00AA00;">:</span><span style="color: #993333;">visible</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> li<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">200</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<br />
<span style="color: #808080; font-style: italic;">/* mantener el &quot;siguiente nivel&quot; invisibles colocándolo fuera de la pantalla. */</span><br />
<span style="color: #6666ff;">.menu2</span> ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul ul <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #933;">-9999px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">-9999px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> <span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">25px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
<span style="color: #808080; font-style: italic;">/*border:1px solid #1E8BB5; white-space:nowrap;*/</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> li <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/*height:20px; */</span><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">160px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#005FB9</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#005FB9</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#005FB9</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> li a <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">11px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">4px</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#005FB9</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> li a<span style="color: #6666ff;">.fly</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span> &nbsp;<span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">vineta_menu.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #933;">150px</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> li a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E5FAFC</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#005FB9</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> li a<span style="color: #6666ff;">.fly</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E5FAFC</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">vineta_menu.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #933;">150px</span> <span style="color: #933;">6px</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul li<span style="color: #3333ff;">:hover </span>&amp;gt<span style="color: #00AA00;">;</span> a<span style="color: #6666ff;">.fly</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E5FAFC</span><span style="color: #00AA00;">&#125;</span><br />
<br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul<span style="color: #00AA00;">,</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul <span style="color: #3333ff;">:hover </span>ul<span style="color: #00AA00;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span><span style="color: #933;">160px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">-1px</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* white-space:nowrap; */</span><br />
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">300</span><span style="color: #00AA00;">;</span><br />
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span><br />
<span style="color: #00AA00;">&#125;</span><br />
<span style="color: #6666ff;">.menu2</span> <span style="color: #3333ff;">:hover </span>ul<span style="color: #6666ff;">.sub</span> li ul <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#005FB9</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">300</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>Ahora el HTML donde pondremos nuestro menu</strong><br />
Como puene ver en el codigo HTML se ha aplicado un hack para poder har funcional el menu en navegadores antiguos como IE6</p>
<div class="codecolorer-container html4strict dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;marco&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;preload2&quot;</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span><br />
<br />
<span style="color: #808080; font-style: italic;">&lt;!--MENU--&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;menu2&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;menu_izq.gif&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;menu_der.gif&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;right&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;telmex&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top_link&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;down&quot;</span>&gt;</span>La Compañia<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if gte IE 7]&gt;&lt;!--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--&lt;![endif]--&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;td&gt;&lt; ![endif]--&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sub&quot;</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Acerca de Nosotros<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Filosofía<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Código de Etica<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Inducción a Empleados<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;&lt;/td&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt; ![endif]--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Direcciones&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top_link&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;down&quot;</span>&gt;</span>Direcciones<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--[if gte IE 7]&gt;&lt;!--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--&lt;![endif]--&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;td&gt;&lt; ![endif]--&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sub&quot;</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;fly&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Dirección Legal<span style="color: #808080; font-style: italic;">&lt;!--[if gte IE 7]&gt;&lt;!--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--&lt;![endif]--&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;td&gt;&lt; ![endif]--&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Gerencia 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Gerencia 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Gerencia 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;&lt;/td&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt; ![endif]--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;mid&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;fly&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;../boxes/&quot;</span>&gt;</span>Dirección de Mercadeo<span style="color: #808080; font-style: italic;">&lt;!--[if gte IE 7]&gt;&lt;!--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--&lt;![endif]--&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;td&gt;&lt; ![endif]--&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Gerencia de Comunicaciones Internas<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Información de Productos<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Soporte a Ventas<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;&lt;/td&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt; ![endif]--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;../mozilla/&quot;</span>&gt;</span>Dirección Administrativa y Financiera<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;../ie/&quot;</span>&gt;</span>Dirección Operaciones<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;../opacity/&quot;</span>&gt;</span>Dirección Cuidado al Cliente<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;&lt;/td&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt; ![endif]--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Comunicacion&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top_link&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;down&quot;</span>&gt;</span>Comunicaciones<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--[if gte IE 7]&gt;&lt;!--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><span style="color: #808080; font-style: italic;">&lt;!--&lt;![endif]--&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;td&gt;&lt; ![endif]--&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sub&quot;</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Zoom Noticias<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Flash<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Enterate<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Manual de Marca<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span>&gt;</span>Presentaciones<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!--[if lte IE 6]&gt;&lt;/td&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/tr&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;/table&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt; ![endif]--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span><br />
<span style="color: #808080; font-style: italic;">&lt;!-- FIN MENU--&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></div></td></tr></tbody></table></div>
<p>Bueno espero vuestros comentarios y sugerencias como siempre.</p>
<p>Descarga del ejercicio: <a class="downloadlink" href="http://www.jorgebravo.es/wp-content/plugins/download-monitor/download.php?id=2" title="Version0.9 downloaded 641 times" >Archivos del Menu CSS (641)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorgebravo.es/2009/08/menu-desplegable-con-css-y-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

