- Masuk/ loggin ke akun blogger anda
- Di halaman dasboart, masuk ke menu “rancangan/template”
- Pilih edit html
- Sebelumnya backup dulu template blog anda untuk berjaga – jaga saat terjadi kesalahan yag di buat anda sendiri
- Cari kode </head> (gunakan ctrl + f agar lebih cepat)
- Kemudian letakkan kode dibawah ini tepat di atas kode </head>
- ( ingat letakkan kode tersebut tepat diatas kode </head> )
- Setelah itu klik save/simpan
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function() {
$('a').hover(function() { //mouse in
$(this).animate({ marginLeft: '12px' }, 400);
}, function() { //mouse out
$(this).animate({ marginLeft: 0 }, 400);
});
});</script>
