<?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/"
	>

<channel>
	<title>tabungan ide dan mimpi</title>
	<atom:link href="http://blog.yudhi.web.id/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yudhi.web.id</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 01 Apr 2009 00:01:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>web depkominfo pake wordpress</title>
		<link>http://blog.yudhi.web.id/capruk-an/web-depkominfo-pake-wordpress/</link>
		<comments>http://blog.yudhi.web.id/capruk-an/web-depkominfo-pake-wordpress/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 22:35:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[capruk-an]]></category>

		<category><![CDATA[jalan-jalan]]></category>

		<guid isPermaLink="false">http://blog.yudhi.web.id/?p=63</guid>
		<description><![CDATA[Berawal dari kebutuhan beberapa dokumen, saya mengunjungi website depkominfo (www.depkominfo.go.id). Setelah dokumen didapat, saya iseng-iseng melihat source code depkominfo, dan.. jreng.. website depkominfo menggunakan wordpress (content management blog paling yahud saat ini).
Jika kita mengetikan pada url (http://www.depkominfo.go.id/wp-login.php), akan muncul form login wordpress.

Kreatif juga ya, dengan tools yang ada bisa membuat seperti ini. He&#8221;.. Berarti buat [...]]]></description>
			<content:encoded><![CDATA[<p>Berawal dari kebutuhan beberapa dokumen, saya mengunjungi website depkominfo (www.depkominfo.go.id). Setelah dokumen didapat, saya iseng-iseng melihat source code depkominfo, dan.. jreng.. website depkominfo menggunakan wordpress (content management blog paling yahud saat ini).<span id="more-63"></span></p>
<p>Jika kita mengetikan pada url (http://www.depkominfo.go.id/wp-login.php), akan muncul form login wordpress.</p>
<p style="text-align: center;"><a href="http://blog.yudhi.web.id/wp-content/uploads/2009/04/login__depkominfo.png"><img class="size-full wp-image-65 aligncenter" title="login__depkominfo" src="http://blog.yudhi.web.id/wp-content/uploads/2009/04/login__depkominfo.png" alt="login__depkominfo" width="339" height="485" /></a></p>
<p style="text-align: left;">Kreatif juga ya, dengan tools yang ada bisa membuat seperti ini. He&#8221;.. Berarti buat tutorial membuat situs kelas perusahan atau pmerintah menggunakan wordpress bakalan rame kali ya.. Saya juga termasuk orang yang suka pake wordpress, kalo kepepet, he&#8221;..</p>
<p style="text-align: left;">Beberapa situs saya yang menggunakan wordpress:</p>
<ul>
<li>rumah cerdas indonesia (www.rumahcerdasindonesia.com)</li>
<li>yayasan yaspida (www.yaspida.com)</li>
</ul>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://blog.yudhi.web.id/capruk-an/web-depkominfo-pake-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Shorthand Guide</title>
		<link>http://blog.yudhi.web.id/bermain-css/kode-singkat-css/</link>
		<comments>http://blog.yudhi.web.id/bermain-css/kode-singkat-css/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 13:05:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[bermain css]]></category>

		<category><![CDATA[css design]]></category>

		<category><![CDATA[css-trik css-tips]]></category>

		<category><![CDATA[pake bhs.inggris]]></category>

		<guid isPermaLink="false">http://blog.yudhi.web.id/?p=35</guid>
		<description><![CDATA[One of the main advantages of using CSS is the large reduction in web page download time. To style text, you used to have to use the &#60;font&#62; tag over and over again. You probably also laid out your site with tables, nested tables and spacer gifs. Now all that presentational information can be placed [...]]]></description>
			<content:encoded><![CDATA[<p>One of the main advantages of using <acronym title="Cascading Stylesheets">CSS</acronym> is the large reduction in web page download time. To style text, you used to have to use the <code>&lt;font&gt;</code> tag over and over again. You probably also laid out your site with tables, nested tables and spacer gifs. Now all that presentational information can be placed in one <acronym title="Cascading Stylesheets">CSS</acronym> document, with each command listed just once.<span id="more-35"></span></p>
<p>But why stop there? By using <acronym title="Cascading Stylesheets">CSS</acronym> shorthand properties you can reduce the size of your <acronym title="Cascading Stylesheets">CSS</acronym> document even more.</p>
<h2>Font</h2>
<p>Use:</p>
<p><code>font: 1em/1.5em bold italic serif</code></p>
<p>&#8230;instead of</p>
<p><code> font-size: 1em;<br />
line-height: 1.5em;<br />
font-weight: bold;<br />
font-style: italic;<br />
font-family: serif </code></p>
<p>This <acronym title="Cascading Stylesheets">CSS</acronym> shorthand property will only work if you&#8217;re specifying both the <code>font-size</code> and the <code>font-family</code> - omit either and the <acronym title="Cascading Stylesheets">CSS</acronym> rule will be completely ignored. Also, if you don&#8217;t specify the <code>font-weight</code>, <code>font-style</code>, or <code>font-varient</code> then these values will automatically default to a value of <code>normal</code>, so do bear this in mind too.</p>
<h2>Background</h2>
<p>Use:</p>
<p><code>background: #fff url(image.gif) no-repeat top left</code></p>
<p>&#8230;instead of</p>
<p><code> background-color: #fff;<br />
background-image: url(image.gif);<br />
background-repeat: no-repeat;<br />
background-position: top left; </code></p>
<p>Omit any of these commands from the background <acronym title="Cascading Stylesheets">CSS</acronym> shorthand property, and the browser will use the default values. If you leave out the <code>background-position</code> command then any background image will be place in the top-left of the container and then repeated both horizontally and vertically.</p>
<h2>Lists</h2>
<p>Use:</p>
<p><code>list-style: disc outside url(image.gif)</code></p>
<p>&#8230;instead of</p>
<p><code> list-style: #fff;<br />
list-style-type: disc;<br />
list-style-position: outside;<br />
list-style-image: url(image.gif) </code></p>
<p>Leave out any of these  <acronym title="Cascading Stylesheets">CSS</acronym> commands from the shorthand rule, and the browser will use the default values for each, namely <code>disc</code>, <code>outside</code> and <code>none</code> (i.e. no images) respectively.</p>
<p>There are a number of different <acronym title="Cascading Stylesheets">CSS</acronym> shorthand commands for margin and padding, depending on how many of the sides of the containing element have the same <code>margin</code> or <code>padding</code> values:</p>
<h3>Four different values</h3>
<p>Use:</p>
<p><code>margin: 2px 1px 3px 4px (<em>top, right, bottom, left</em>)</code></p>
<p>&#8230;instead of</p>
<p><code> margin-top: 2px;<br />
margin-right: 1px;<br />
margin-bottom: 3px;<br />
margin-left: 4px </code></p>
<h3>Three different values</h3>
<p>Use:</p>
<p><code>margin: 5em 1em 3em (<em>top, right and left, bottom</em>)</code></p>
<p>&#8230;instead of</p>
<p><code> margin-top: 5em;<br />
margin-right: 1em;<br />
margin-bottom: 3em;<br />
margin-left: 1em </code></p>
<h3>Two different values</h3>
<p>Use:</p>
<p><code>margin: 5% 1% (<em>top and bottom, right and left</em>)</code></p>
<p>&#8230;instead of</p>
<p><code> margin-top: 5%;<br />
margin-right: 1%;<br />
margin-bottom: 5%;<br />
margin-left: 1% </code></p>
<h3>One different value</h3>
<p>Use:</p>
<p><code>margin: 0 (<em>top, bottom, right and left</em>)</code></p>
<p>&#8230;instead of</p>
<p><code> margin-top: 0;<br />
margin-right: 0;<br />
margin-bottom: 0;<br />
margin-left: 0 </code></p>
<p>The above rules also apply to <code>padding</code> and <code>border</code> (see below for more on <code>border</code>).</p>
<h2>Border</h2>
<p>Use:</p>
<p><code>border: 1px black solid</code></p>
<p>&#8230;instead of</p>
<p><code> border-width: 1px;<br />
border-color: black;<br />
border-style: solid </code></p>
<p>Use:</p>
<p><code>border-right: 1px black solid</code></p>
<p>&#8230;instead of</p>
<p><code> border-right-width: 1px;<br />
border-right-color: black;<br />
border-right-style: solid </code></p>
<p>(You can substitute right with <code>top</code>, <code>bottom</code> or <code>left</code>.)</p>
<p>The above <acronym title="Cascading Stylesheets">CSS</acronym> shorthand rules can be conveniently combined with the shorthand rules used by margin and padding. Take a look at the following box:</p>
<p><span class="imagestyle" style="width: 112px;"><span><img style="background: #f4f4f4 none repeat scroll 0% 0%; width: 100px; height: 30px;" src="http://blog.yudhi.web.id/wp-content/uploads/2009/03/s.gif" alt="Blank image, with light blue top and left borders, and dark blue bottom and right borders. The top and left borders are slightly thicker" width="1" height="1" /></span></span></p>
<p>These borders can be achieved with the following <acronym title="Cascading Stylesheets">CSS</acronym> command:</p>
<p><code> border: 8px solid #336;<br />
border-left: 10px solid #ccf;<br />
border-top: 10px solid #ccf </code></p>
<p>You can achieve exactly the same effect by using:</p>
<p><code> border: 8px solid #336;<br />
border-width: 10px 8px 8px 10px<br />
border-color: #ccf #336 #336 #ccf </code></p>
<h2>Conclusion</h2>
<p><acronym title="Cascading Stylesheets">CSS</acronym> shorthand properties are great! They&#8217;re a great way to reduce the amount of code contained in a <acronym title="Cascading Stylesheets">CSS</acronym> document, allowing for faster download times and easier editing. Now who can argue with that?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yudhi.web.id/bermain-css/kode-singkat-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>kegunaan css z-index</title>
		<link>http://blog.yudhi.web.id/bermain-css/kegunaan-css-z-index/</link>
		<comments>http://blog.yudhi.web.id/bermain-css/kegunaan-css-z-index/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 03:04:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[bermain css]]></category>

		<category><![CDATA[css design]]></category>

		<guid isPermaLink="false">http://blog.yudhi.web.id/?p=9</guid>
		<description><![CDATA[Ketika kita membuat website, lumrah jika kita memadukan beberapa web komponen seperti ajax slideshow, dropdown menu, modal window dll. Ada masalah yang pernah saya hadapi, yaitu tidak sesuainya urutan web komponen yang saya inginkan. Terkadang dropdown menu berada di bawah layer slideshow gambar, hmmff.. hal ini important juga lho.

Setelah menggali di beberapa situs berkenaan css, [...]]]></description>
			<content:encoded><![CDATA[<p>Ketika kita membuat website, lumrah jika kita memadukan beberapa web komponen seperti ajax slideshow, dropdown menu, modal window dll. Ada masalah yang pernah saya hadapi, yaitu tidak sesuainya urutan web komponen yang saya inginkan. Terkadang dropdown menu berada di bawah layer slideshow gambar, hmmff.. hal ini important juga lho.</p>
<p><span id="more-9"></span></p>
<p>Setelah menggali di beberapa situs berkenaan css, saya mendapatkan solusinya pada tag css, yaitu <strong>z-index</strong>. Z-index adalah tag css yang mengatur urutan tumpukan suatu komponen (baik itu div, p, img dll).Pola kerjanya mirip sekali dengan pembuatan film kartun. Misal untuk membuat suatu film kartun, kita harus punya layer background dan layed manusia, dua layer ini memiliki urutan tumpukan. Layer paling bawah adalah layer background, dan layer diatasnya adalah manusia.Lain hal nya jika kita membalik posisi layer ini, maka gambar manusia tidak akan muncul</p>
<p>
z-index memiliki value, yang bisa diisi dengan angka(integer), dengan aturan: nilai elemen yang lebih besar akan selalu ada di depan.
</p>
<p>Setingan aslinya, z-index bernilai 0, dimana semua layer diurut secar natural berdasarkan urutan pengkodean. Namun jika anda memiliki 3 layer yang anda ingin urutkan, misal dalam kasus memunculkan dropdown, slideshow dan image thumbnail slideshow, maka kita bisa mengatur nilai z-index pada setiap komonen drop down dan slideshow. Untuk contoh nyatanya, nanti saya coba untuk upload beberapa contoh. Namun, jika Anda menginginkan agar suatu komponen selalu berada di atas, maka masukan nilai 1, dengan nilai z-index yang lain 0, maka komponen tadi akan selalu berada si posisi atas, tanpa terganggu oleh komponen yang lain.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yudhi.web.id/bermain-css/kegunaan-css-z-index/feed/</wfw:commentRss>
		</item>
		<item>
		<title>css background-image missing di ie 7</title>
		<link>http://blog.yudhi.web.id/bermain-css/hello-world/</link>
		<comments>http://blog.yudhi.web.id/bermain-css/hello-world/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 12:35:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[bermain css]]></category>

		<category><![CDATA[css-trik css-tips]]></category>

		<guid isPermaLink="false">http://blog.yudhi.web.id/?p=1</guid>
		<description><![CDATA[Waha.. Udah buat css background image ternyata di IE 7 ngga muncul, kenapa ya?..
]]></description>
			<content:encoded><![CDATA[<p>Waha.. Udah buat css background image ternyata di IE 7 ngga muncul, kenapa ya?..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yudhi.web.id/bermain-css/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
