<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>css &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/css/</link>
	<description>Feed of posts on WordPress.com tagged "css"</description>
	<pubDate>Mon, 23 Nov 2009 10:59:22 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Whole New Approach to HTML Editing]]></title>
<link>http://asv3.wordpress.com/2009/11/23/whole-new-approach-to-html-editing/</link>
<pubDate>Mon, 23 Nov 2009 09:20:04 +0000</pubDate>
<dc:creator>asv3</dc:creator>
<guid>http://asv3.wordpress.com/2009/11/23/whole-new-approach-to-html-editing/</guid>
<description><![CDATA[How much time in a day you spend coding html? How many times unmatched div (any for that matter) tag]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>How much time in a day you spend coding html? How many times unmatched div (any for that matter) tags are frustrated you? Here is a quite promising answers to such problems.</p>
<p><strong>Zen-Coding </strong>, yeah Zen-coding, smashingmagazine.com&#8217;s <a title="Posts by Sergey Chikuyonok" href="http://www.smashingmagazine.com/author/sergey-chikuyonok/">Sergey Chikuyonok</a> have come up with exiting, yet promising solution for we web-developer&#8217;s delight.</p>
<p>You can turn html:xt&#62;div#header&#62;div#logo+ul#nav&#62;li.item-$*5&#62;a</p>
<p>into</p>
<p>&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62; &#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; xml:lang=&#8221;en&#8221;&#62; &#60;head&#62; 	&#60;title&#62;&#60;/title&#62; 	&#60;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html;charset=UTF-8&#8243; /&#62; &#60;/head&#62; &#60;body&#62; 	&#60;div&#62; 		&#60;div&#62;&#60;/div&#62; 		&#60;ul&#62; 			&#60;li&#62;&#60;a href=&#8221;"&#62;&#60;/a&#62;&#60;/li&#62; 			&#60;li&#62;&#60;a href=&#8221;"&#62;&#60;/a&#62;&#60;/li&#62; 			&#60;li&#62;&#60;a href=&#8221;"&#62;&#60;/a&#62;&#60;/li&#62; 			&#60;li&#62;&#60;a href=&#8221;"&#62;&#60;/a&#62;&#60;/li&#62; 			&#60;li&#62;&#60;a href=&#8221;"&#62;&#60;/a&#62;&#60;/li&#62; 		&#60;/ul&#62; 	&#60;/div&#62; &#60;/body&#62; &#60;/html&#62;</p>
<p>with just snap of a shortcut.</p>
<p>Go ahead and explore @ http://www.smashingmagazine.com/2009/11/21/zen-coding-a-new-way-to-write-html-code/ or http://code.google.com/p/zen-coding/</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Thank God]]></title>
<link>http://waidey.wordpress.com/2009/11/23/thank-god/</link>
<pubDate>Mon, 23 Nov 2009 08:19:13 +0000</pubDate>
<dc:creator>waidey</dc:creator>
<guid>http://waidey.wordpress.com/2009/11/23/thank-god/</guid>
<description><![CDATA[They have finally gone, Jedward has left the building. I&#8217;m considering going on next year as y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>They have finally gone, Jedward has left the building. I&#8217;m considering going on next year as you can do quite well if even if you can&#8217;t sing it seems. Lloyd to go next week then Olly for me.</p>
<p>Not posted in a while been really busy. Still waiting back for all the job applications I filed away, will start hearing back 1st December but i&#8217;m not expecting much at all. Having to look for Summer Internships instead of years now, not ideal but still beneficial.</p>
<p>Moved onto House Season 6. First TV series i&#8217;ve watched in HD and man it&#8217;s impressive, I feel like i could touch Wilson and he&#8217;d touch back.</p>
<p>Started my coding freelancing by doing some work for a friend and his concept named SoM. I&#8217;m doing a temporary page for now, will be doing a final site after my January Exams. Looking forward to it.</p>
<p>Love you</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Small heights in your site]]></title>
<link>http://mywebdunia.wordpress.com/2009/11/23/small-heights-in-your-site/</link>
<pubDate>Mon, 23 Nov 2009 08:17:22 +0000</pubDate>
<dc:creator>Amit Nazare</dc:creator>
<guid>http://mywebdunia.wordpress.com/2009/11/23/small-heights-in-your-site/</guid>
<description><![CDATA[If you are creating a layout, with some very small heights as custom borders for elements. Usually, ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you are creating a layout, with some very small heights as custom borders for elements. Usually, what you will do is you&#8217;ll just have to add height: XXpx to the style&#8217;s declarations and think that it  should be fine.but check your page once in IE and you&#8217;ll probably know what is the answer.</p>
<p>Check out with this example</p>
<p><strong>HTML Code:</strong><br />
&#60;div&#62; id=&#8221;smallHeight&#8221;&#60;/div&#62;</p>
<p><strong>CSS Code:</strong><br />
#smallHeight{<br />
    background: #ccc;<br />
    border: solid 1px #333;<br />
    width: 400px;<br />
    height: 2px;<br />
    margin: 30px 0;<br />
} </p>
<p>Surprised to see a  block with around 22px height in IE.</p>
<p>Well you might be thinking now how to fix this issue. Thats very simple one, we have two fixes for such IE bugs.</p>
<p><strong>1 Solution:</strong><br />
Simply add a <strong>font-size:0</strong> for the div, this is because IE refuses to set the font-size less than the default one. So the height of the div is set to approx 22px. </p>
<p>#smallHeight{<br />
    background: #ccc;<br />
    border: solid 1px #333;<br />
    width: 400px;<br />
    height: 2px;<br />
    margin: 30px 0;<br />
    <strong>font-size:0;</strong><br />
}</p>
<p>This will solve your problem. </p>
<p><strong>2 Solution:</strong><br />
Well second solution is to set <strong>overflow:hidden</strong> for the particular div block.</p>
<p>#smallHeight{<br />
    background: #ccc;<br />
    border: solid 1px #333;<br />
    width: 400px;<br />
    height: 2px;<br />
    margin: 30px 0;<br />
    <strong>overflow:hidden;</strong><br />
}</p>
<p>Thats quite a very handy and a simple solution. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://chamara.wordpress.com/2009/11/23/697/</link>
<pubDate>Mon, 23 Nov 2009 07:21:59 +0000</pubDate>
<dc:creator>chamara</dc:creator>
<guid>http://chamara.wordpress.com/2009/11/23/697/</guid>
<description><![CDATA[Any Indian company interested to become a software license distributor in India? Contact me for furt]]></description>
<content:encoded><![CDATA[Any Indian company interested to become a software license distributor in India? Contact me for furt]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://chamara.wordpress.com/2009/11/23/696/</link>
<pubDate>Mon, 23 Nov 2009 07:14:04 +0000</pubDate>
<dc:creator>chamara</dc:creator>
<guid>http://chamara.wordpress.com/2009/11/23/696/</guid>
<description><![CDATA[Go go gadget!!! DOLLARS!!!]]></description>
<content:encoded><![CDATA[Go go gadget!!! DOLLARS!!!]]></content:encoded>
</item>
<item>
<title><![CDATA[How to set fixed width web page sitting in centre of window for IE6x, Firefox, Safari and Chrome]]></title>
<link>http://digantakumar.com/2009/11/23/how-to-set-fixed-width-web-page-sitting-in-centre-of-window-for-ie6x-firefox-safari-and-chrome/</link>
<pubDate>Mon, 23 Nov 2009 01:33:12 +0000</pubDate>
<dc:creator>Diganta Kumar</dc:creator>
<guid>http://digantakumar.com/2009/11/23/how-to-set-fixed-width-web-page-sitting-in-centre-of-window-for-ie6x-firefox-safari-and-chrome/</guid>
<description><![CDATA[Got a fixed width website and can&#8217;t get it to centrally align in the window in Internet Explor]]></description>
<content:encoded><![CDATA[Got a fixed width website and can&#8217;t get it to centrally align in the window in Internet Explor]]></content:encoded>
</item>
<item>
<title><![CDATA[Exploit Baru Serang IE6 dan IE7]]></title>
<link>http://tech19.wordpress.com/2009/11/22/exploit-baru-serang-ie6-dan-ie7/</link>
<pubDate>Sun, 22 Nov 2009 23:32:31 +0000</pubDate>
<dc:creator>uniqueopini</dc:creator>
<guid>http://tech19.wordpress.com/2009/11/22/exploit-baru-serang-ie6-dan-ie7/</guid>
<description><![CDATA[Bagi reman-reman (rekan/teman) yang aktif menggunakan Window dan Internet Explorer 6/7, berita baru ]]></description>
<content:encoded><![CDATA[Bagi reman-reman (rekan/teman) yang aktif menggunakan Window dan Internet Explorer 6/7, berita baru ]]></content:encoded>
</item>
<item>
<title><![CDATA[Morro med Font Dragr]]></title>
<link>http://pixelpond.wordpress.com/2009/11/22/morro-med-font-dragr/</link>
<pubDate>Sun, 22 Nov 2009 20:54:03 +0000</pubDate>
<dc:creator>pixelpond</dc:creator>
<guid>http://pixelpond.wordpress.com/2009/11/22/morro-med-font-dragr/</guid>
<description><![CDATA[I den nyeste versjonen av Firefox (3.6 Beta) er det støtte for å laste opp filer ved å bruke drag n’]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://pixelpond.wordpress.com/files/2009/11/fontdragr.jpg"><img class="alignleft size-medium wp-image-91" title="fontdragr" src="http://pixelpond.wordpress.com/files/2009/11/fontdragr.jpg?w=300" alt="" width="300" height="277" /></a>I den nyeste versjonen av Firefox (3.6 Beta) er det støtte for å laste opp filer ved å bruke drag n’ drop rett inn i nettleseren. En som har lekt seg med dette i kombinasjon med @font-face er The <a href="http://www.thecssninja.com/" target="_blank">CSS Ninja</a>.  Han har laget en web applikasjon for å teste fonter.  Med <a href="http://labs.thecssninja.com/font_dragr/" target="_blank">Font Dragr</a> drar du en hvilken som helst font av typen otf, ttf, svg eller woff inn i nettleseren. Fonten blir rendret direkte!</p>
<p>Jeg har testet greia og det funket helt perfekt. Man må bare huske på å laste ned <a href="http://en-us.www.mozilla.com/en-US/firefox/all-beta.html" target="_blank">Firefox 3.6 Beta</a> først. I tillegg fant jeg ut at det ikke var så greit å dra fontene rett fra fontfolderen på PC. Jeg måtte kopiere de til en annen folder først. For Mac’erne vil det funke fint uten videre hassel. Hvis du ikke gidder å teste selv kan du se hvordan det virker i <a href="http://www.thecssninja.com/javascript/font-dragr" target="_blank">denne filmsnutten</a>.</p>
<p>For å følge opp Typekit-tråden fra tidligere: Sjekk ut Fredrik Mathesons <a href="http://www.movito.net/testing-web-fonts/" target="_blank">testing av Typekit og Typotheque</a>!<br />
Jeg har forøvrig Typekit invitasjoner igjen dersom det er noen som vil prøve.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[О CSS свойстве display и выделении.]]></title>
<link>http://igorurvantsev.wordpress.com/2009/11/22/%d0%be-css-%d1%81%d0%b2%d0%be%d0%b9%d1%81%d1%82%d0%b2%d0%b5-display%d0%b8-%d0%b2%d1%8b%d0%b4%d0%b5%d0%bb%d0%b5%d0%bd%d0%b8%d0%b8/</link>
<pubDate>Sun, 22 Nov 2009 16:44:28 +0000</pubDate>
<dc:creator>igorurvantsev</dc:creator>
<guid>http://igorurvantsev.wordpress.com/2009/11/22/%d0%be-css-%d1%81%d0%b2%d0%be%d0%b9%d1%81%d1%82%d0%b2%d0%b5-display%d0%b8-%d0%b2%d1%8b%d0%b4%d0%b5%d0%bb%d0%b5%d0%bd%d0%b8%d0%b8/</guid>
<description><![CDATA[При сокрытии элементов верстки с помощью CSS-свойства display они &#8220;выделяются&#8221; вместе с ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>При сокрытии элементов верстки с помощью CSS-свойства display они &#8220;выделяются&#8221; вместе с видимыми. То есть, если выделить мышкой кусок текста, в котором содержатся скрытые слова, и скопировать текст в буфер, эти слова также окажутся в буфере. В сети не нашел внятного объяснения решения этой проблемы. Пришлось изобрести велосипед:</p>
<p>1 вариант.</p>
<p>Удалять элементы со страницы (например, придав CSS-свойству innerText пустое значение). Конечно, при необходимости использовать позже, данные &#8220;удаленных&#8221; элементов нужно сохранить в переменных (например, Javascipt) и впоследствии восстановить все то же CSS-свойство innerText.</p>
<p>2 вариант.</p>
<p>Переместить сокрытые элементы в свободную часть экрана так, чтобы они не попались под выделение (в случае, если выделяется не вся страница), с помощью CSS-свойств позиционирования и Javascript. Впоследствии, при необходимости, обратными действиями перемещать их обратно (здесь может потребоваться сохранять координаты).</p>
<p>Насчет второго варианта не уверен.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CSS Zen Garden]]></title>
<link>http://cvorg.wordpress.com/2009/11/22/css-zen-garden/</link>
<pubDate>Sun, 22 Nov 2009 09:21:36 +0000</pubDate>
<dc:creator>cvorg</dc:creator>
<guid>http://cvorg.wordpress.com/2009/11/22/css-zen-garden/</guid>
<description><![CDATA[Une démonstration de ce qui peut être accompli visuellement par un design CSS]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-full wp-image-185" title="css_garden" src="http://cvorg.wordpress.com/files/2009/11/css_garden.jpg" alt="" width="271" height="165" /><span style="color:#8ab459;">Une démonstration de ce qui peut être accompli visuellement par un design CSS<a class="alignright" href="http://www.csszengarden.com/" target="_blank"><img class="alignright size-full wp-image-319" title="lien" src="http://cvorg.wordpress.com/files/2009/11/check_tick43.gif" alt="" width="20" height="16" /></a></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IE9: Una vista al futuro de Internet Explorer]]></title>
<link>http://historialweb.wordpress.com/2009/11/22/ie9-una-vista-al-futuro-de-internet-explorer/</link>
<pubDate>Sun, 22 Nov 2009 08:55:17 +0000</pubDate>
<dc:creator>Ángel</dc:creator>
<guid>http://historialweb.wordpress.com/2009/11/22/ie9-una-vista-al-futuro-de-internet-explorer/</guid>
<description><![CDATA[He visto este post que me parece interesante en anieto2k sobre como se plantea el nuevo la nueva ver]]></description>
<content:encoded><![CDATA[He visto este post que me parece interesante en anieto2k sobre como se plantea el nuevo la nueva ver]]></content:encoded>
</item>
<item>
<title><![CDATA[Zen coding]]></title>
<link>http://linkos.wordpress.com/2009/11/22/zen-coding/</link>
<pubDate>Sun, 22 Nov 2009 07:48:10 +0000</pubDate>
<dc:creator>linkgreencold</dc:creator>
<guid>http://linkos.wordpress.com/2009/11/22/zen-coding/</guid>
<description><![CDATA[A cool info for webdesigners who work gradually with HTML as CSS. Take a look.]]></description>
<content:encoded><![CDATA[A cool info for webdesigners who work gradually with HTML as CSS. Take a look.]]></content:encoded>
</item>
<item>
<title><![CDATA[Al oído de Billy Sáez]]></title>
<link>http://panaletras.wordpress.com/2009/11/22/al-oido-de-billy-saez/</link>
<pubDate>Sun, 22 Nov 2009 05:17:06 +0000</pubDate>
<dc:creator>Hector Robles</dc:creator>
<guid>http://panaletras.wordpress.com/2009/11/22/al-oido-de-billy-saez/</guid>
<description><![CDATA[La opinión de&#8230; . MARCOS WEVER ARAÚZ Sin tratar de restarle mérito a nadie, siento que por muy ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>La opinión de&#8230;</p>
<p>.</p>
<div id="Contenido_Credito"><span style="color:#0000ff;"><strong>MARCOS WEVER ARAÚZ</strong></span></div>
<p style="text-align:justify;padding-left:90px;">Sin tratar de restarle mérito a nadie, siento que por muy buenas intenciones que hayan tenido varios de los directores de la Caja del Seguro Social al inicio de su gestión, han culminado sus roles administrativos lejos de una gran ponderación y más bien con penas y muy pocas glorias.</p>
<p style="text-align:justify;padding-left:90px;">Quizás en el afán de comenzar con buen pie, en su rol de nuevo administrador de la entidad se nos presentó el amigo Billy Sáez con una cartera de acciones con las cuales resolver de manera inmediata los escuálidos resultados que han castigado por muchos años los hombros de una clientela cautiva, que espera, más que acciones positivas, una fuente inagotable de milagros.</p>
<p style="text-align:justify;padding-left:90px;">Como usuario de la Caja, el hecho de que el nuevo director nos anunciara la instauración de un novedoso sistema para la obtención de citas y que colateralmente se trabaja en la optimización de la atención médica, es motivo de complacencia, pero no de total alegría para mí.</p>
<p style="text-align:justify;padding-left:90px;">Conociendo en parte la trayectoria del señor Sáez, este tipo de proyección es lo menos que puedo esperar de él, debido a que lo que esta clase de anuncio representa son logros indiscutibles de llegar a concretarse, aunque sus efectos aún no lo convierten en la excepción de la regla ni en los elementos de cambios profundos que ahora mismo aguardamos como asegurados.</p>
<p style="text-align:justify;padding-left:90px;">Creo que ante la famélica situación del Seguro Social, el reto del Ingeniero Sáez se eleva mucho más allá de soluciones que, aunque de difícil implementación y excelentes resultados, no alcanzan frente a otras necesidades el grado de superlativas.</p>
<p style="text-align:justify;padding-left:90px;">Visualizo que enmarcado en una era de avances tecnológicos y de contundentes triunfos en el campo médico, es deber del amigo Sáez embarcarse en aventuras que lo lleven a que nuestros historiadores y analistas describan su administración como modelo y que, finalmente, conviertan su persona en el propulsor de una verdadera revolución en el devenir de la institución a su cargo.</p>
<p style="text-align:justify;padding-left:90px;">En tal sentido, me atrevo a sugerirle al nuevo director de la Caja del Seguro Social que dedique gran parte de su tiempo a instaurar la infraestructura necesaria para no circunscribirnos solo al implante de riñones, por ejemplo. Que luche por romper el muro que señala que a nuestros ciudadanos solo se les pueden hacer trasplantes de órganos pares.</p>
<p style="text-align:justify;padding-left:90px;">En este momento la Nación cuenta con varios especialistas formados para convertir una donación de hígado en una nueva esperanza de vida. Hombres y mujeres apertrechados con las mejores armas del conocimiento científico y los que, por la actual plataforma que rige la materia, no se están aprovechando en la salvación de un mayor número de vidas.</p>
<p style="text-align:justify;padding-left:90px;">Quien padece de problemas hepáticos sabe a la perfección que un trasplante de hígado, generado en Panamá, puede significar una erogación de unos 25 mil balboas contra los setenta y cinco mil o más que cuesta en otras latitudes. Eso sin mencionar el ahorro sustancial que gira en torno al seguimiento de rigor, especialmente dentro de los primeros meses de convalecencia.</p>
<p style="text-align:justify;padding-left:90px;">Conociendo su disposición al trabajo es que me atrevo a motivar esta inquietud en usted y que mediante algún tipo de esfuerzo colectivo evitemos que en el futuro sucedan casos como el de un padre que luego de perder a una hija por insuficiencia hepática, tuvo que ver consumirse la vida de otro de sus vástagos por iguales circunstancias. Ver apagarse una vida joven y llena de promesas, paralelo a que en el mundo se proclamara el avance de nuevas soluciones en el campo médico.</p>
<p style="text-align:justify;padding-left:90px;">Ingeniero Sáez, ahora le toca al pueblo y a usted, la palabra…</p>
<p style="text-align:justify;">&#60;&#62;</p>
<p style="text-align:justify;">
Publicado el 21  de noviembre de 2009 <a href="http://www.estrelladepanama.com">en el diario La Estrella de Panamá, </a> a  quien damos, lo mismo que al autor, todo el crédito que le corresponde.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rotación o cambios de ministros]]></title>
<link>http://panaletras.wordpress.com/2009/11/21/rotacion-o-cambios-de-ministros/</link>
<pubDate>Sun, 22 Nov 2009 04:49:02 +0000</pubDate>
<dc:creator>Hector Robles</dc:creator>
<guid>http://panaletras.wordpress.com/2009/11/21/rotacion-o-cambios-de-ministros/</guid>
<description><![CDATA[. La opinión del Educador&#8230;.. . Santander Tristán Medina . Un cambio o rotación de ministros, s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>.</div>
<div>La opinión del Educador&#8230;..</div>
<div>.</div>
<p><!-- TITULO --></p>
<p><!-- SUMARIO --> <!-- AUTOR --></p>
<div id="displaystory_name"><span style="color:#0000ff;"><strong>Santander Tristán Medina</strong></span></div>
<p><!-- AGENCIA --></p>
<div id="displaystory_agency">.</div>
<p style="text-align:justify;padding-left:90px;"><!-- ####################################### --> <!-- CONTENIDO --> <!-- ####################################### -->Un cambio o rotación de ministros, sería saludable a la administración gubernamental, siempre y cuando quienes ocupen los ministerios sean profesionales capacitados en la materia que les corresponde atender.</p>
<p style="text-align:justify;padding-left:90px;">El pueblo cuestiona que en la Caja de Seguro Social no haya un profesional de la medicina con amplia experiencia en administración de empresas; que en el Ministerio de Educación haya una excelente periodista y sin embargo su falta de experiencia en materia educativa no le permite hacer los cambios profundos que está demandando el sistema educativo.</p>
<p style="text-align:justify;padding-left:90px;">Casos como estos se repiten en otros ministerios y, lamentablemente, los planes de gobierno que alienta el actual régimen no pueden marchar con la normalidad y el éxito que aspira el pueblo panameño.</p>
<p style="text-align:justify;padding-left:90px;">Aspectos tan importantes en la vida nacional como lo es la educación, la salud, el agro, la vivienda, el trabajo, etc., deben estar en manos de los mejores, y si así lo hacemos, los resultados podrán responder a las aspiraciones nacionales y el país dejará de seguir cargando su fardo de pobreza, ignorancia e injusticia social.</p>
<p style="text-align:justify;padding-left:90px;">El Señor Presidente ha hablado de cambios o rotación en el gabinete, porque necesita de colaboradores que se identifiquen con sus inquietudes y se dispongan a trabajar, constructivamente, por la solución de los tantos problemas que agobian al país.</p>
<p style="text-align:justify;padding-left:90px;"><!-- inicio VALORES AGREGADOS --> <!-- fin VALORES AGREGADOS --> <!-- ################# CANTIDAD DE NOTAS RESTANTE DE LA NOTA COMPLETA ##################### --><!-- ################# CANTIDAD DE NOTAS RESTANTE DE LA NOTA COMPLETA ##################### --> <!-- ################# CANTIDAD DE NOTAS RESTANTE DE LA NOTA COMPLETA ##################### --><!-- ################# CANTIDAD DE NOTAS RESTANTE DE LA NOTA COMPLETA ##################### -->Hemos venido insistiendo en la participación de toda la ciudadanía en el manejo de la nave del Estado; de la colaboración estrecha que hay que brindar al gobierno, sin intereses de ninguna índole, a fin de que pueda cumplir las tantas promesas que se han hecho al pueblo panameño.</p>
<p style="text-align:justify;padding-left:90px;">La lucha por la patria es de todos y debemos procurar que no solamente en los ministerios, si no en todas las entidades públicas, sean los mejores los encargados de echar adelante los programas que se ha propuesto llevar a cabo la actual administración en beneficio de las grandes mayorías nacionales.</p>
<p>-</p>
<p>&#60;&#62;<br />
Publicado el 21  de noviembre de 2009 en el diario<a href="http://www.pa-digital.com.pa"> El Panamá América, </a> a  quien damos, lo mismo que al autor, todo el crédito que le corresponde.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Richard Sandler photo and video website]]></title>
<link>http://jenniferlim.wordpress.com/2009/11/22/richard-sandler-website/</link>
<pubDate>Sun, 22 Nov 2009 04:48:12 +0000</pubDate>
<dc:creator>Jennifer Lim</dc:creator>
<guid>http://jenniferlim.wordpress.com/2009/11/22/richard-sandler-website/</guid>
<description><![CDATA[For a web design course taken at Pratt Institute in 2008, I designed a working website for Richard S]]></description>
<content:encoded><![CDATA[<div class='snap_preview'>
<p>For a web design course taken at Pratt Institute in 2008, I designed a working website for Richard Sandler &#8211; a New York based photographer and videographer.</p>
<p>The screenshots above are from his professional website: <a href="richardsandler.com">richardsandler.com</a>.</p>
<p>The site was constructed using CSS stylesheets, and is the first complete site I have ever built!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Couter Strike Flash 1]]></title>
<link>http://inorbt.com/2009/11/22/couter-strike-flash-1/</link>
<pubDate>Sun, 22 Nov 2009 01:58:16 +0000</pubDate>
<dc:creator>orbtblog</dc:creator>
<guid>http://inorbt.com/2009/11/22/couter-strike-flash-1/</guid>
<description><![CDATA[mó cara que eu não coloco jogos em flash.. , antes de jogar CSS eu jogava esses em flash pra me aque]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>mó cara que eu não coloco jogos em flash.. , antes de jogar CSS eu jogava esses em flash pra me aquecer &#8230; tem varios outros, vou colocar com o tempo eles e muito mais</p>
<p><img class="aligncenter size-thumbnail wp-image-4279" title="cs flash1" src="http://orbt.wordpress.com/files/2009/11/cs-flash1.png?w=150" alt="" width="150" height="112" /></p>
<p>clique aqui abaixo e jogue!</p>
<p><!--more--></p>
<p><embed src='http://widgets.vodpod.com/w/video_embed/Groupvideo.3980554' type='application/x-shockwave-flash' AllowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' wmode='transparent' flashvars='' /></p>
<div style="font-size:10px;">more about &#8220;<a href="http://vodpod.com/watch/2553821-untitled?pod=orbita">Couter Strike Flash 1</a>&#8220;, posted with <a href="http://vodpod.com?r=wp">vodpod</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[O design faz a diferença]]></title>
<link>http://oqueco.wordpress.com/2009/11/22/o-design-faz-a-diferenca/</link>
<pubDate>Sun, 22 Nov 2009 01:58:09 +0000</pubDate>
<dc:creator>alexandrepoa</dc:creator>
<guid>http://oqueco.wordpress.com/2009/11/22/o-design-faz-a-diferenca/</guid>
<description><![CDATA[Galera, Estou postando mais um site que descobri navegando pelos confins da nossa web. Esse site mos]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Galera,</p>
<p>Estou postando mais um site que descobri navegando pelos confins da nossa web.</p>
<p>Esse site mostra bem o que eu constumo dizer e gosto como trabalho, um design muito bem elaborado e uma programação bem feita, uma combinação ótima sem necessáriamente depender de muitas &#8220;firulas&#8221;.</p>
<p><a href="http://www.andreashinkel.com/"><img class="aligncenter size-medium wp-image-46" title="site" src="http://oqueco.wordpress.com/files/2009/11/site1.jpg?w=300" alt="" width="300" height="191" /></a></p>
<p>Vale conferir: http://www.andreashinkel.com/</p>
<p>Abraço,</p>
<p>Alexandre</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Un vistazo a IE9]]></title>
<link>http://esquinadigital.wordpress.com/2009/11/22/un-vistazo-a-ie9/</link>
<pubDate>Sun, 22 Nov 2009 00:19:54 +0000</pubDate>
<dc:creator>angelnyo</dc:creator>
<guid>http://esquinadigital.wordpress.com/2009/11/22/un-vistazo-a-ie9/</guid>
<description><![CDATA[El equipo de Desarrollo de Internet Explorer 9, comenta un poco sobre algunas características en las]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>El equipo de Desarrollo de <a href="http://blogs.msdn.com/ie/" target="_blank">Internet Explorer 9</a>, comenta un poco sobre algunas características en las que <a href="http://blogs.msdn.com/ie/" target="_blank">Internet Explorer 9</a> se enfocara;</p>
<p>&#160;</p>
<p><strong>Progreso de Desempeño</strong>: los sitio web, se componen de varios subsistemas. Dependiendo el sitio, por ejemplo un sitio de noticias o una aplicación web como Office Web Apps cargan de manera muy diferente estos subprocesos, por ejemplo el análisis sintáctico (parsing) de CSS y HTML, el rendereado, formato y de más. IE9 buscara una armonía entre todos estos procesos.</p>
<p><img class="aligncenter size-medium wp-image-759" title="Dean_PDC_1" src="http://esquinadigital.wordpress.com/files/2009/11/dean_pdc_1.png?w=300" alt="" width="300" height="125" /> </p>
<p>Se busca la <strong>Interoperabilidad</strong><strong> entre Estándares</strong>, como <a href="http://html5.org/" target="_blank">HTML5</a>, <a href="http://www.css3.info/selectors-test/" target="_blank">CSS 3</a>, CSS 2.1 y pruebas como Acid3</p>
<p> <a href="http://esquinadigital.wordpress.com/files/2009/11/dean_pdc_4.png"><img class="aligncenter size-medium wp-image-760" title="Dean_PDC_4" src="http://esquinadigital.wordpress.com/files/2009/11/dean_pdc_4.png?w=300" alt="" width="300" height="188" /></a></p>
<p><strong>El poder del hardware</strong> aprovechado por el navegador con los motores Direct2D y DirectWrite.</p>
<p>&#160;</p>
<p>Las nuevas características de <a href="http://blogs.msdn.com/ie/" target="_blank">Internet Explorer 9</a> fueron hechas pensando en los desarrolladores.</p>
<p>&#160;</p>
<p>&#160;</p>
<p>Link: <a href="http://blogs.msdn.com/ie/" target="_blank">Internet Explorer 9</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Compress you CSS]]></title>
<link>http://chrisbarba.wordpress.com/2009/11/21/compress-you-css/</link>
<pubDate>Sat, 21 Nov 2009 23:21:33 +0000</pubDate>
<dc:creator>chrisbarba</dc:creator>
<guid>http://chrisbarba.wordpress.com/2009/11/21/compress-you-css/</guid>
<description><![CDATA[A great way to help with performance of your website is to compress (or minify) your CSS and javascr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A great way to help with performance of your website is to compress (or minify) your CSS and javascript. Removing spaces, comments, etc will shrink the size of your files which will decrease the payload of your page.&#160; Usually the larger your site the larger your CSS will be.</p>
<p>The only disadvantage to compress your CSS is maintenance (since your entire CSS file ends up on one line it’s difficult to read/maintain).My approach to this is to have 2 CSS files in your project, one compressed and the other not.&#160; I have my code reference the compressed file.&#160; When changes are needed I update the non-compressed file, recompress, copy and paste the results over the compressed file.</p>
<p>Of course you only need to compress your CSS files when you move to production.</p>
<p>Here is a link to site that will compress your CSS </p>
<p><a title="http://www.lotterypost.com/css-compress.aspx" href="http://www.lotterypost.com/css-compress.aspx">http://www.lotterypost.com/css-compress.aspx</a></p>
<p>They have a link that will compress your javascript using YUI compressor or Microsoft Ajax Minifier.</p>
<p>&#160;</p>
<p align="left">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Please Excuse The Mess]]></title>
<link>http://whatsundermyapron.wordpress.com/2009/11/21/please-excuse-the-mess/</link>
<pubDate>Sat, 21 Nov 2009 22:10:54 +0000</pubDate>
<dc:creator>tspoon</dc:creator>
<guid>http://whatsundermyapron.wordpress.com/2009/11/21/please-excuse-the-mess/</guid>
<description><![CDATA[I am attempting at fixing a few things around these parts, so there may be some craziness for the ne]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://whatsundermyapron.wordpress.com/files/2009/11/women-at-work-sign.png"><img src="http://whatsundermyapron.wordpress.com/files/2009/11/women-at-work-sign.png" alt="" title="women-at-work-sign" width="260" height="229" class="aligncenter size-full wp-image-1344" /></a></p>
<p>I am attempting at fixing a few things around these parts, so there may be some craziness for the next little bit. Hang in there, because I will get ironed out soonly. </p>
<p>If anyone has any advice on Word Press headers and how to fix mine, holla at your girl! (I promise, that will be my last attempt at being urban pretty much ever again. I could just feel my grey hairs screaming while I typed that.)</p>
<p>Thanks for being patient and understanding in the meantime! {muah!}</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Zen Coding]]></title>
<link>http://teusje.wordpress.com/2009/11/21/zen-coding/</link>
<pubDate>Sat, 21 Nov 2009 21:41:36 +0000</pubDate>
<dc:creator>teusje</dc:creator>
<guid>http://teusje.wordpress.com/2009/11/21/zen-coding/</guid>
<description><![CDATA[Awesome! Definitely something for web developers. [ source ]]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ug84Ypwqfzk&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ug84Ypwqfzk&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Awesome! Definitely something for web developers.</p>
<p>[ <a href="http://www.smashingmagazine.com/2009/11/21/zen-coding-a-new-way-to-write-html-code/">source</a> ]</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
