This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Jumat, 25 Februari 2011
Selasa, 08 Februari 2011
Cara Menambah "Berlangganan Email via FeedBurner"
Form berlangganan via email ini adalah fasilitas yang disediakan kepada pengunjung atau pembaca yang ingin berlangganan artikel dari blog kita. Pengunjung atau pembaca cukup mendaftarkan emailnya dan secara otomatis setiap artikel yang baru diterbitkan (sejak pendaftaran dilakukan) akan terkirim ke email tersebut. Contohnya, lihat pada bagian bawah blog ini, tepat di bawah daftar isi yang bertuliskan "Untuk berlangganan artikel/cerita dari blog ini, silahkan masukkan alamat email di sini. Artikel/posting-an terbaru akan dikirim secara otomatis ke email kalian"
1. Login ke Blogger. (Ini penting: Agar kalian tidak melakukan Login 2x, dengan login ke Blogger, maka akun FeedBurner anda otomatis aktif, itu karena "blog&feed anaknya mbah Google").
2. Kunjungi Web FeedBurner.
3. Lalu ketikkan alamat blog anda di kotak "Burn a feed right this instant" dan centang kotak "I am a podcaster!" >> Klik Next>>
Senin, 07 Februari 2011
Domain Gratis untuk www.domainname.co.cc, berakhir di custom domain
Kalau kalian ingin punya domain gratis, bisa daftar di CO.CC atau CZ.CC. Domain ini nantinya dapat digunakan untuk banyak hal. Antara lain, (1) untuk menjadi domain blog di blogger.com blogspot, (2) menjadi domain di wordpress.com; (3) menjadi domain dengan hosting gratis (lihat daftar hosting gratis). Fungsi nomor (3) ini khusus bagi kalian yang ingin berlatih memiliki situs dengan domain dan hosting sendiri.
Cara daftar di CO.CC
1.
Cara daftar di CO.CC
1.
How To install "Tag Cloud" on Blogger ?
Senin, Februari 07, 2011
No comments
Instructions for creating a multi-colored tag cloud on Blogger.
First you obviously have to have a blog on Blogger, and you MUST be using the layouts templates,
(this isn't available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs to be at least ONE label with more than ONE entry or the scripts hit a bug - so have at least one label with more than one entry before starting).
Make sure you backup your template before making any changes!
Log into Blogger and go to your layouts section. On the 'Page Elements' setup page
make sure you have a label widget already installed where you want it (it can be moved around
later). Then go to the Edit HTML settings and leave the widgets NOT exapanded. It will make
things easier to deal with.
Now the code comes in 3 parts. A section for the stylesheet, a configurations section,
and then the actual widget itself.
The first part to put in is the stylesheet section. The following code needs to be copied
and inserted into your stylesheet, which in the layouts is marked out by the <b:skin> tags.
Easiest thing to do is find the closing skin tag
]]></b:skin>
and place the code right BEFORE that.
Here it is, copy and paste without modification right now. I'll explain what can be tweaked
later.
First you obviously have to have a blog on Blogger, and you MUST be using the layouts templates,
(this isn't available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs to be at least ONE label with more than ONE entry or the scripts hit a bug - so have at least one label with more than one entry before starting).
Make sure you backup your template before making any changes!
Log into Blogger and go to your layouts section. On the 'Page Elements' setup page
make sure you have a label widget already installed where you want it (it can be moved around
later). Then go to the Edit HTML settings and leave the widgets NOT exapanded. It will make
things easier to deal with.
Now the code comes in 3 parts. A section for the stylesheet, a configurations section,
and then the actual widget itself.
The first part to put in is the stylesheet section. The following code needs to be copied
and inserted into your stylesheet, which in the layouts is marked out by the <b:skin> tags.
Easiest thing to do is find the closing skin tag
]]></b:skin>
and place the code right BEFORE that.
Here it is, copy and paste without modification right now. I'll explain what can be tweaked
later.
Jumat, 04 Februari 2011
How to Transparent Flash Background ?
Jumat, Februari 04, 2011
No comments
After you have included the Flash SWF file to your HTML page, you can open the HTML page with your HTML editor and edit the HTML code.How to make a Flash SWF movie with transparent background?
Look for the code that embeds the Flash Movie. It should look similar to this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125">
<param name="movie" value="flashmovie.swf" />
<param name="quality" value="high" />
<embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
<param name="movie" value="flashmovie.swf" />
<param name="quality" value="high" />
<embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
To make the background transparent, you need to add the WMODE parameters to the HTML code.
1. Add the following parameter to the OBJECT tag:After edit, the HTML code should look similar to below. The new changes are shown in red.
<param name="wmode" value="transparent">2. Add the following parameter to the EMBED tag:
wmode="transparent"













