Masukkan E-Mail untuk Berlangganan:


3.29.2012

Multi Colored Links When Hovering

With this tweak you can create multi colored links when hovering over the hyperlinked text.

Design--> Edit HTML--> Click Ctrl+F

A find/search bar will pop up and in the box you will input </head>

This will locate the </head> tag in your template. Just above the </head> tag place this code below.


<script type='text/javascript'>

 //<![CDATA[

 var rate = 20;

 if (document.getElementById)
  window.onerror=new Function("return true")

 var objActive;  // The object which event occured in
  var act = 0;    // Flag during the action
  var elmH = 0;   // Hue
  var elmS = 128; // Saturation
  var elmV = 255; // Value
  var clrOrg;     // A color before the change
  var TimerID;    // Timer ID

 if (document.all) {
  document.onmouseover = doRainbowAnchor;
  document.onmouseout = stopRainbowAnchor;
  }
  else if (document.getElementById) {
  document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  document.onmouseover = Mozilla_doRainbowAnchor;
  document.onmouseout = Mozilla_stopRainbowAnchor;
  }

 function doRainbow(obj)
  {
  if (act == 0) {
  act = 1;
  if (obj)
  objActive = obj;
  else
  objActive = event.srcElement;
  clrOrg = objActive.style.color;
  TimerID = setInterval("ChangeColor()",100);
  }
  }


 function stopRainbow()
  {
  if (act) {
  objActive.style.color = clrOrg;
  clearInterval(TimerID);
  act = 0;
  }
  }


 function doRainbowAnchor()
  {
  if (act == 0) {
  var obj = event.srcElement;
  while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  obj = obj.parentElement;
  if (obj.tagName == 'A' || obj.tagName == 'BODY')
  break;
  }

 if (obj.tagName == 'A' && obj.href != '') {
  objActive = obj;
  act = 1;
  clrOrg = objActive.style.color;
  TimerID = setInterval("ChangeColor()",100);
  }
  }
  }


 function stopRainbowAnchor()
  {
  if (act) {
  if (objActive.tagName == 'A') {
  objActive.style.color = clrOrg;
  clearInterval(TimerID);
  act = 0;
  }
  }
  }


 function Mozilla_doRainbowAnchor(e)
  {
  if (act == 0) {
  obj = e.target;
  while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  obj = obj.parentNode;
  if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  break;
  }

 if (obj.nodeName == 'A' && obj.href != '') {
  objActive = obj;
  act = 1;
  clrOrg = obj.style.color;
  TimerID = setInterval("ChangeColor()",100);
  }
  }
  }


 function Mozilla_stopRainbowAnchor(e)
  {
  if (act) {
  if (objActive.nodeName == 'A') {
  objActive.style.color = clrOrg;
  clearInterval(TimerID);
  act = 0;
  }
  }
  }


 function ChangeColor()
  {
  objActive.style.color = makeColor();
  }


 function makeColor()
  {
  // Don't you think Color Gamut to look like Rainbow?

 // HSVtoRGB
  if (elmS == 0) {
  elmR = elmV;    elmG = elmV;    elmB = elmV;
  }
  else {
  t1 = elmV;
  t2 = (255 - elmS) * elmV / 255;
  t3 = elmH % 60;
  t3 = (t1 - t2) * t3 / 60;

 if (elmH < 60) {
  elmR = t1;  elmB = t2;  elmG = t2 + t3;
  }
  else if (elmH < 120) {
  elmG = t1;  elmB = t2;  elmR = t1 - t3;
  }
  else if (elmH < 180) {
  elmG = t1;  elmR = t2;  elmB = t2 + t3;
  }
  else if (elmH < 240) {
  elmB = t1;  elmR = t2;  elmG = t1 - t3;
  }
  else if (elmH < 300) {
  elmB = t1;  elmG = t2;  elmR = t2 + t3;
  }
  else if (elmH < 360) {
  elmR = t1;  elmG = t2;  elmB = t1 - t3;
  }
  else {
  elmR = 0;   elmG = 0;   elmB = 0;
  }
  }

 elmR = Math.floor(elmR).toString(16);
  elmG = Math.floor(elmG).toString(16);
  elmB = Math.floor(elmB).toString(16);
  if (elmR.length == 1)    elmR = "0" + elmR;
  if (elmG.length == 1)    elmG = "0" + elmG;
  if (elmB.length == 1)    elmB = "0" + elmB;

 elmH = elmH + rate;
  if (elmH >= 360)
  elmH = 0;

 return '#' + elmR + elmG + elmB;
  }

 //]]>

 </script>
Source : http://www.tweakmyblogger.com/2011/02/multi-colored-links-when-hovering.html
read more »»  

3.28.2012

Meta Tags

Meta tags are basically a description for search engines to read. In the past few years the value of meta tags has depreciated due to people abusing them. Meta Keywords are no longer used by most major search engines.  I still recommend using them in your template because some smaller search engines still use them. 

To add meta tags you first need to find the best keywords for your blog with
Meta Tag Analyzer.

Once you have your keyword's go to  Design--> Edit HTML

Scroll down not far from the top of your template and you will see this code below.

<head>
Just below the head code place this code.
<meta content='DESCRIPTION' name='description'/>
<meta content='20KEYWORDS' name='keywords'/>
<meta content='YOURNAME' name='author'/>
Now fill in the following.
  • DESCRIPTION
  • 20KEYWORDS
  • YOURNAME
Be careful how many characters you are using in your description. You do not want your description to be cut off in the search engine. I believe the max number of characters for Google is about 150 or 2 lines.

Your keywords should have commas and spaces after the commas.

Example:
'Games, Cool, Fun, Sports, Play'

Some characters maybe rejected by Blogger template.

Use the Meta Tag Analyzer after your done to check your meta tags.

Keep in mind this will not appear immediately in the search engines. It takes time for the web crawlers to pick up the changes. At best guess it can take around a week or so and even up to a month for all the indexed pages within your blog.


Here is an example of what it might look like when your done.
<meta content='Tweaks, Hacks, Tips, and Tricks for Blogger to customize everything you want! We have many great tutorials with detailed instructions!' name='description'/>

<meta content='Blogger, Tweaks, Tips, Trick, Edits, Template, Blogspot, Favicon, Background, HTML Buttons, Amazon, Adsense, Ads, Hyperlinks, Page Rank, Backlinks' name='keywords'/>

<meta content='AiresOFwar' name='author'/>
Source : http://www.tweakmyblogger.com/2010/07/meta-tags_13.html
read more »»  

Custom Favicon on Blogger

Favicon is the icon you see on most browsers URL box. You can make your own favicon and get rid of that big orange B for good.

First thing you will need to do is to make your favicon. You may want to use paint or photoshop either one will work great. You can also use one of the many online tools.

If you choose to use paint or photoshop you will need to upload your image onto one of the online favicon generators in order to change the extension to .ico. The reason you want to change it to .ico is so the code below displays it correctly in IE and Google Chrome. Firefox will  display the favicon in just about any format. But IE and GC are a little more strict and need to be .ico  format file. So after you upload it to the generator, you will want to download the .ico image it gives you.

The problems you will face now is that almost no upload sites support .ico format flies. So the solution I found to this is to make  www.webs.com account. Upload the  favicon as a file to the your webs site.

Now you will need to go to your Blogger Dashboard. From the Dashboard go to Design  then Edit HTML.
You will need to find (Ctrl+F) this code below in your template HTML code.


</head>
Once you have found the head tag in the HTML, paste this following code just above it.

<link href='YOUR WEBS ICON IMAGE' rel='shortcut icon' type='/icon/ico' />
<link href='YOUR WEBS ICON IMAGE' rel='shortcut icon'/>
<link href='YOUR WEBS ICON IMAGE' rel='icon'/>

Now go back to the window with your webs site opened and right click on the favicon file you uploaded. Then replace the red text above with the image link you just copied.

Example:
<link href='http://matrixanimes.webs.com/favicon(3).ico' rel='shortcut icon' type='/icon/ico'/>
<link href='http://matrixanimes.webs.com/favicon(3).ico' rel='shortcut icon'/>
<link href='http://matrixanimes.webs.com/favicon(3).ico' rel='icon'/>
</head>
Remember your uploading the icon image to .webs site as a file not a photo.

Source : http://www.tweakmyblogger.com/2010/05/favicon.html
read more »»  

Make Youtube Videos Autoplay

Youtube videos used to have a option to set autoplay on them but was removed not long after the Rick Roll videos started going around. Rather that was the reason or not I do not know but their is a way to make the video autoplay on your own.

Here is a example of what a youtube embedded video might look like.

<iframe width="560" height="349" src="VIDEO SOURCE URL" frameborder="0" allowfullscreen></iframe>
To make the video autoplay you just need to add ?autoplay=1 after the VIDEO SOURCE URL.

Example:
<iframe width="560" height="349" src="http://www.youtube.com/embed/4P0Rbe1ASuQ?autoplay=1" frameborder="0" allowfullscreen></iframe>
 Source : http://www.tweakmyblogger.com/2011/05/make-youtube-videos-autoplay.html
read more »»  

Greeting Message for All Times Of The Day

This is a JavaScript alert message that will greet your visitors with a different message for anytime of the day. This is actually the first JavaScript I have ever wrote so enjoy.

If the user has JavaScript blocked on their browser or their browser does not support it, then they may not see this message. When you entered this page you should of been greeted with a message, if not then you have JavaScript blocked or your browser does not support it.

1 Just add this script below anywhere you want the greeting message to appear. If you add it into a gadget then it will display on all pages in your blog.

<script type="text/javascript">
function morning(){alert("Good Morning!");}function afternoon(){alert("Good Afternoon!");}function night(){alert("Have a Good Night!");}</script>
<script type="text/javascript">var d = new Date();var time = d.getHours();if (time < 11){morning();}else if (time > 17){night();}else{afternoon();}
</script>
2. Replace the colored text with the message you want to display.

Orange message will display from 12am-12pm.
Red message  will display from 12pm-6pm
Light Blue message will display from 6pm-12am

3. Optional
If you noticed I colored 2 areas in the bottom of the script. You don't have to change these unless you want to. Basically these are used to change the time the messages will display. Right now the times above will be what time the messages display.

If you do want to change these then you will need to understand what they do. As we all know one day is built up of 24 hours. Well the numbers work from 1-24 with each number referring to the time between the number and the next.

1=1am-2am
2=2am-3am
3=3am-4am

The basic coding syntax for the time is pretty simply to understand.

if (time < 11) {morning 

This above means "If time is less then 11am greet with morning message" ( 11=11am-12pm)

else if (time > 17){night

This above means "If time is greater then 5pm greet with night message" (17=5pm-6pm)

Any unassigned time between those two will automatically greet with afternoon message.

Source : http://www.tweakmyblogger.com/2010/11/greeting-message-for-all-times-of-day.html
read more »»  

Remove/Hide Post Atom, Home, and Older Post

Those links just below your post can be removed with just a few lines of coding. You can even choose which links you want to remove with the codes below.


Go to Design--> Template Designer--> Advanced--> Add CSS--> Input The Codes Below.

Remove Post Atom:
.feed-links, .blog-feeds {
display: none;
}
Remove Home Link:
.home-link {
display: none;
}
Remove Older Post Link:
.blog-pager-older-link {
display: none;
}
Remove Home & Older Post Link:
.blog-pager {
display: none;
}
After you paste one of these codes into the Add CSS box, with the cursor still in the box hit the space bar for it to take effect.

Source : http://www.tweakmyblogger.com/2010/07/removehide-post-feeds.html
read more »»  

Dewa Kematian

Ingin tau dewa-dewa kematian?

1. Anubis

Dewa Anubis digambarkan berkepala ajag (anjing gurun)
Protector of the dead and embalming [1]
Nama dalam hiroglif
i n
p
w E16
Pusat pemujaan Asyut, Cynopolis
Simbol Imiut, cambuk
Orangtua Ra (mitos awal)
Nephthys dan Set, atau Osiris (dalam catatan lain) (kemudian)
Saudara Horus (dalam beberapa catatan)


Anubis dalam kepercayaan Mesir Kuna dianggap sebagai dewa kematian dengan wujud kepala anjing dan badan manusia. Anubis adalah nama Mesir [2] untuk dewa berkepala anjing yang berhubungan dengan mumi dan kehidupan setelah kematian pada mitologi Mesir. Pada bahasa Mesir Kuna, Anubis dikenal sebagai Inpu, (dibaca Anupu, Ienpw, dll.)[3]. Penemuan yang tertua menyebut Anubis pada teks piramid kerajaan tertua, di sana ia dihubungan dengan kekerasan seorang raja[4] pada saat itu.


2. Huitzilopochtli


Pada mitologi Aztek, Huitzilopochtli, juga disebut Uitzilopochtli, (IPA: [witsiloˈpotʃtɬi] ("Kolibri Selatan", "Dia dari Selatan", "Kolibri di kiri (selatan)", atau "Burung Kolibri Bertangan kiri" – huitzilin adalah huruf bahasa Nahuatl untuk Kolibri), adalah dewa perang dan dewa matahari dan pelindung kota Tenochtitlan. Ia juga merupakan dewa nasional Tenochtitlan. 

3. Mot (Dewa Semit)

Dalam bahasa Ugarit, Mot 'Kematian' (dieja mt) adalah personifikasi dan dewa kematian. Kata ini bersanak dengan bentuk lainnya yang bermakna 'kematian' dalam berbagai bahasa Semit dan bahasa Afrika-Asia: dengan bahasa Arab موت mawt; dengan bahasa Ibrani מות (mot atau mavet; Ibrani kuno moth atau maweth); dengan bahasa Malta mewt; dengan bahasa Suryani mautā; dengan bahasa Ge'ez mot; dengan bahasa Kanaan, bahasa Aram Mesir, bahasa Nabath, dan bahasa Palmyra מות (mwt); dengan bahasa Aram Yahudi, bahasa Aram Palestina Kristen, dan bahasa Samaria מותא (mwt’); dengan bahasa Mandean muta; dengan bahasa Akkadia mūtu; dengan bahasa Hausa mutuwa; dan dengan bahasa Angas mut.
Mot 'Kematian', putra 'El, berdasarkan instruksi yang diberikan oleh dewa Hadad (Ba‘al) kepada pembawa pesannya, tinggal di kota bernama hmry ('Mirey'), satu lubang adalah tahtanya, dan Kekotoran adalah warisannya.

4. Odin & Osiris

Dalam Mitologi Nordik, Odin adalah pemimpin para Dewa. Namanya konon berasal dari kata “óðr” (baca: Odhr), yang berarti “perangsang”, “kemarahan”, dan “puisi”. Sebagai pemimpin para Dewa, ia memiliki banyak peran: Dewa kebijaksanaan, Dewa perang, Dewa pertempuran, dan Dewa kematian.


Osiris, penguasa kematian. Kulitnya yang hijau melambangkan kelahiran kembali.
Dewa Alam Baka
Nama dalam hiroglif
Q1
D4
A40
Pusat pemujaan Abydos
Simbol Kait dan Cambuk
Orangtua Geb dan Nut
Saudara Isis, Set, Nephthys, (dan Arueris sesuai Plutarch)
Pasangan Isis


Osiris ialah dewa maut Mesir Kuno, dalam beberapa literatur mesir kuno, ia disebut juga dengan: Asar, Asari, Aser, Ausar, Ausir, Wesir, Usir, Usire or Ausare. Kerajaannya terdapat di barat, ia menghakimi jiwa manusia menurut pahala yang mereka kumpulkan[1] Secara tradisional ia ditampilkan berkulit hijau dengan mengenakan janggut firaun, sebagian tubuhnya dibalut seperti mumi, mengenakan mahkota yang unik dengan dua bulu burung unta di kedua sisinya, memegang atribut kait dan cambuk.
Osiris adalah putra sulung dewa bumi Geb,[2] dan dewi langit Nut, sekaligus saudara kembar dan suami Isis, sementara Horus dianggap putranya yang didapatkannya setelah ia meninggal.[2] Ia juga dikaitkan dengan epitet Khenti-Amentiu, yang berarti "Orang yang paling Barat" — merujuk kepada perannya sebagai penguasa tanah orang mati yang terletak di sebelah barat.[3] Sebagai penguasa kematian, Osiris kadang disebut "raja orang hidup", karena orang Mesir kuno percaya bahwa orang meninggal yang terberkati disebut "ia yang hidup".[4]
Osiris pertama kali disebut pada masa Dinasti kelima Mesir, meskipun sangat mungkin ia telah dipuja lebih awal;[5] julukan Khenti-Amentiu berasal sedikitnya dari masa dinasti pertama, juga sebagai gelar firaun. Kebanyakan data mengenai mitos Osiris berasal dari Naskah Piramida yang berasal dari kurun akhir dinasti ke-5. Kemudian pada masa kerajaan baru kisahnya disebutkan dalam dokumen Prasasti Shabka dan Persaingan Horus dan Seth, dan pada zaman yang sangat kemudian, kisahnya dikisahkan secara naratif oleh pujangga Yunani, termasuk Plutarch[6] dan Diodorus Siculus.[7]
Osiris bukan hanya hakim yang pengasih dan pengampun di alam baka, tetapi juga sebagai agen alam baka yang memberikan kehidupan di dunia nyata, termasuk tumbuhnya tunas tanaman dan banjir tahunan sungai Nil yang memberikan kesuburan dan kehidupan kepada Mesir. Ia digambarkan sebagai "Tuan yang penuh cinta",[8] " Ia yang senantiasa terlihat muda belia"[9] dan "Tuan yang diam".[10] Para firaun peguasa Mesir mengaitkan Osiris dengan kematian — karena Osiris berhasil bangkit dari kematian, maka mereka pun berharap yang sama, bersatu secara spiritual dengannya, mewarisi kehidupan abadi melalui proses peniruan magis. Pada masa Kerajaan Baru semua orang, bukan hanya firaun, percaya pada saat kematian mereka dapat mengasosiasikan diri dengan Osiris jika mereka mampu melakukan ritual asimilasi; proses pembalseman, mumifikasi, bekal kubur, pemakaman dan lain-lain yang banyak menghabiskan biaya.[11]
Melalui harapan akan terciptanya kehidupan baru setelah kematian, Osiris dikaitkan dengan siklus kehidupan di alam, terutama daur hidup panen tumbuhan dan banjir tahunan sungai Nil, serta dikaitkan dengan rasi Orion dan Sirius pada permulaan pergantian tahun.[9] Osiris secara meluas dipuja sebagai Dewa Kematian hingga berakhir pada masa penindasan atas Agama Mesir Kuno pada era kekuasaan Kristen Koptik di Mesir.[12][13]

5. Thanatos


Thanatos (Bahasa Yunani: Θάνατος) adalah dewa kematian dalam mitologi Yunani. Dia membawa kematian yang tenang dan damai, berkebalikan dengan salah satu saudaranya, Ker, pembawa kematian yang menyakitkan. Thanatos adalah anak dari Niks dan Erebos dan memiliki saudara kembar Hipnos. Saudaranya yang lain yaitu: Geras (dewa masa tua), Oizis (dewa penderitaan), Moros (dewa ajal), Apate (dewi penipuan), Momos (dewa ejekan), Eris (dewi perselisihan), Nemesis (dewi pembalasan) dan Kharon. Thanatos sering digambarkan sebagai pria tua bersayap.

6. Wepwawet

Dalam mitologi Mesir akhir, Wepwawet (hieroglif WP-W3WT; juga Upuaut, Wep-wawet, Wepawet, dan Ophois) adalah dewa perang, yang pusat pemujaannya ada di Asyuth di Mesir Hulu (Lycopolis saat periode Yunani-Romawi). Namanya berarti, pembuka jalan. Sebagian beranggapan bahwa Wepwawet tampak sebagai pengintai, yang keluar untuk membersihkan jalur tentaranya agar berjalan lancar.[1] Sebuah prasasti dari Sinai menjelaskan bahwa Wepwawet "membukan jalan" atas kemenangan raja Sekhemkhet.[2]

7. Yama (Hindu)

Dewanagari: यम
Ejaan Sanskerta: Yama
Golongan: Dewa
Kediaman: Naraka
Senjata: Danda
Pasangan: Yami atau Syamala
Wahana: kerbau


Yama (Sanskerta: यम; Yama) adalah dewa akhirat dalam agama Hindu. Menurut kepercayaan umat Hindu, dialah dewa yang pertama kali dijumpai oleh roh orang mati saat berangkat menuju wilayah surgawi, sehingga dia juga bergelar dewa kematian. Tugasnya yang utama adalah mengadili roh orang mati, dengan didampingi oleh asistennya yang disebut Citragupta, pencatat karma manusia. Karena keadilannya, ia disebut pula Dharmaraja.
Yama memiliki wahana berupa seekor kerbau betina. Ia bersenjata gada atau danda dan membawa jerat. Dia memiliki dua anjing mengerikan bermata empat yang bertugas menjaga jalan yang dilewati roh orang mati menuju alam Yama.


Sumber : http://id.wikipedia.org/wiki/Kategori:Dewa_kematian
read more »»