• RSS
  • Facebook
  • Twitter

Comments

In this Blogger tutorial (Blogspot tutorial) you will learn how to add a comments counter button to Blogger (Blogspot) to show off the number of comments each of your posts has received.

A comment counter button (bubble) will have the effect of encouraging visitors to comment on your Blogger blog and also help to highlight the credibility of your articles.


Installing this Blogger hack to add a comment counter button only takes a few minutes. The changes needed to add the comment bubble to Blogger while not difficult do involve adding a small snippet of code to your Blogger template in two places. For this reason I strongly urge you to back up your Blogger template before attempting this blogger hack.

Blogger Tutorial Difficulty - easy to medium


How to Add a Comments Counter Bubble to Blogger
A Step-by-Step Walkthrough
The following steps will insert a fully clickable comments counter button on the same line as the post title in Blogger. The comments counter is right aligned by default.

  1. Log in to Blogger and the blog you wish to apply these changes to

  2. Select Design > Edit HTML

  3. Click on Download Full Template to back up your template before you make any changes

  4. Check the Expand Widget Templates box

  5. In the CSS Styling section of your Blogger template and just before the ]]></b:skin>

    .comments-button {
    width : 48px;
    height : 48px;
    background : url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgK2CVVmwEdbJ43yoc3b1Pmgo1jmFOhvcy28a2dvDzZo9DjD5AWzenEnQnoVKfDsgvkvekQatFlyXOIsNRH0r-3gFvYdOdGPxZiYqIDLkkf4zw0IFjxYGOfahfJ98nOg3WOHQzkdIyKi4CF/s200/comment-counter-bubble.png) no-repeat;
    float : right;
    font-size : 18px;
    margin-top : -15px;
    margin-right : 2px;
    text-align : center;
    padding-top:10px;
    }

  6. Now find the following block of code using CTRL key + F

    <b:includable id='post' var='post'>
    <div class='post hentry uncustomized-post-template'>
    <a expr:name='data:post.id'/>
    <b:if cond='data:post.title'>
    <h3 class='post-title entry-title'>
    <b:if cond='data:post.link'>
    <a expr:href='data:post.link'><data:post.title/></a>

  7. Copy this code block:

    <b:if cond='data:post.allowComments'>
    <a class='comments-button' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:post.numComments/></a>
    </b:if>

  8. Insert as follows:

    <b:includable id='post' var='post'>
    <div class='post hentry uncustomized-post-template'>
    <a expr:name='data:post.id'/>
    <b:if cond='data:post.title'>
    <h3 class='post-title entry-title'>
    <b:if cond='data:post.allowComments'>
    <a class='comments-button' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:post.numComments/></a>
    </b:if>

    <b:if cond='data:post.link'>
    <a expr:href='data:post.link'><data:post.title/></a>

  9. Save template and then view blog to admire your new comment counter badge.


Tips and Troubleshooting
  1. If you prefer you can replace the button image I have provided with your own image. You can find other buttons easily enough by doing a Google search with a term like "speech button icons".

    Upload your button to a hosting service such as Photobucket and change the URL address of the image in the CSS styling section. The following example will render a smaller blue button. Note I have reduced the font size to accommodate the change. You may need to play around with the settings to get the font sizing right for your image.

    .comments-button {
    width : 48px;
    height : 48px;
    background : url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9Qezu17446FNSJMzxudb31C9VuRXyI4C0bg_xjTUsQbyEEUI15kou9UQ7Kuen23eQGYAYruEX4pkkAmLgQAe8E7t_q_yciTeMwZ8reMN1CNy-SFnr5XWEvCrvR3M3eqVHRBenl-C9G2Pe/s200/comment-counter-bubble-2.png) no-repeat;
    float : right;
    font-size : 14px;
    margin-top : -15px;
    margin-right : 2px;
    text-align : center;
    padding-top:10px;
    }


  2. If you want your comment counter to be left aligned instead of right you will need to change the CSS styling from float:right; to float:left;

In today's Blogger tutorial I have covered how to add a comments counter to a Blogger blog (blogspot blog) that will appear to the right of your blog post title. A comments counter is a way to encourage visitors to comment and is a way of showing off the credibility of your blog posts. Good luck! Any comments about installing this blogger hack are most welcome.


Related Articles
List of Blog Know How Tutorials for Blogger Blogs
Tips to Add Digg Button to Blogger Blogspot
Add Twitter Followers Counter to Blogger
Add Twitter Badge or Button to Blogger
Add a Social Bookmarking Button to Blogger
Add Social Bookmark Buttons to Blogger

Comments

In Part 1 of this three part series of Blogger tutorials I discuss how to change bullet point styles of lists you may want to include in Blogger posts. This first Blogger tutorial deals with unordered lists and how these can be styled using CSS in Blogger (Blogspot). The second part of these tutorials will deal with ordered lists while part 3 discusses bullet point changes you can make to your sidebar, footer and menus.

Today you will learn how to:

  • change the style of bullet points in unordered lists
  • add bullet points to unordered lists if they are absent
  • add an image instead of a bullet to lists in your Blogger posts

This tutorial is rated easy and is designed so that even Blogger newbies can make the changes they want to their Blogger template. Changing the bullet point style involves changing the CSS styling in your Blogger template (Blogspot template). Join me as I walk you through this step by step guide.

How to Add Bullet Points to a Blogger Post
If you are still using the old Blogger editor you will need to add bullet points manually to any unordered lists you create in Blogger posts. If you are using the new editor the work is done for you. Either way though this is the type of code that generates unordered lists:
<ul><li>Create your own list markers in Blogger</li>
<li>Create unordered lists in Blogger</li>
<li>Create bullet points in Blogger</li>
</ul>

Any text can be placed between the two <li></li> tags. Simply copy this list into a Blogger post and substitute your text for mine and you will have an unordered list.

Circular Bullet Points
Circular bullets (also known as markers or discs) are displayed in Blogger by default whenever unordered lists appear. This means that whenever the <ul></ul> tags are used in Blogger posts a leader dot or disc will appear before each line of text denoted by <li>. (Note I will discuss ordered lists <ol></ol> tags in part two of this tutorial).

An unordered list in a Blogger post using the <ul></ul> tags would appear like this:
  • Change Bullet Point Style in Blogger
  • Add Bullets to Blogger
  • Changing the look of unordered lists in Blogger


We can make lots of changes to the look of these filled discs or filled circles by changing the CSS styling in Blogger. For instance we can have squares, or we can choose to have no bullet point at all. Here's how.

To Add Square Bullet Points to Blogger (Blogspot)
The following code will replace the filled circle bullet points with squares instead:

  1. Login to Blogger if not already logged in

  2. From the Dashboard go to Design >Edit HTML

  3. Back up your template

  4. Find the posts section of your CSS stylesheet which will be before ]]></b:skin> tag

  5. For the following default Blogger templates eg "Simple" add the following CSS code to the post section like this

    .post ul li {
    list-style: square;
    }


  6. Save template and view blog post to see the circular bullet points have been replaced by square ones


To Add Circle Bullet Points to Blogger (Blogspot)
To add unfilled circle list markers or bullet points to Blogger posts do the following:

  1. Follow steps 1-4 as per square bullets

  2. Add the following code to the posts section of the CSS stylesheet of your Blogger template by entering the following code:

    .post ul li {
    list-style: circle;
    }


  3. Save the changes to your template and view a blog post to see the empty circle bullet points


How To Indent Bullet Points in Blogger
There are two ways to increase the indentation of list style markers or bullet points.

  1. Using the Inside or Outside Element
    The indentation of bullet points can be varied using the "inside" element. By default the list will be "outside" unless the "inside element" is used. The following code shifts the indentation of the list further to the right.

    .post ul li {
    list-style: circle inside;
    }



  2. Custom Indentation CSS Styling
    It is also possible to add custom indentation styling to lists. For instance here I have added a 2.5em indent using the following code to the circles example:

    .post ul li {
    list-style: circle;
    margin-left: 2.5em;
    }



How To Replace Bullet Points with an Image in Blogger (Blogspot)
Sometimes you may prefer to have an image list marker or icon instead of a bullet point. You will need to host your image somewhere such as a free image hosting service eg Flickr or Photo Bucket. Follow the steps below to replace bullet points in your Blogger posts with an image

  1. Follow steps 1-4 as per square bullets

  2. In the CSS styling of the posts section of your Blogger template and before the </head> insert the following code:

    .post ul li {
    list-style: url("http://URLaddressofImage.gif");
    }


  3. Replace URLaddressofImage with the URL address of the image you have uploaded to an image hosting service. Note in most cases the file will have a .gif extension. If the extension is anything other than .gif you will need to change this too.


  4. Save the changes to your Blogger template and navigate to a post page to see your image list marker installed


How to Remove the Bullet Points from Blogger Posts
If you are going for a minimalist look you may prefer to have no bullet points in the lists in your Blogger posts. In this case:

  1. Follow steps 1-4 as per square bullets

  2. In the CSS styling of the posts section of your Blogger template and before the </head> insert the following code:

    .post ul li {
    list-style: none;
    }




Related Articles
List of Blog Know How Tutorials for Blogger Blogs
How to Add CSS Styling to Blockquotes in Blogger
How to Add, Delete or Remove Blogger Image Borders
How to Align and Justify Posts in Blogger
How to Add a Divider Between Blogger Posts
How to Add or Change a Background Image in a Blogger Template

Comments

Buat yang suka banget ma Naruto ne ada komik-manga NARUTO bhs indo yang bisa didownload dari vol 1 sampai vol 55, eh yang 2-27 blm ada adanya yang bahasa inggris jadi belum ikut ane pasang!
Naruto VOL 1
Naruto VOL 28
Naruto VOL 29
Naruto VOL 30
Naruto VOL 31
Naruto VOL 32
Naruto VOL 33
Naruto VOL 34
Naruto VOL 35
Naruto VOL 36
Naruto VOL 37
Naruto VOL38

Naruto VOL 39
Naruto VOL 40
Naruto VOL 41

Categories:
Comments

Banyak cara yang bisa kita lakukan untuk melakukan koneksi internet secara gratis antara lain menggunakan IpScan dan software UltraVPN dan sekalipun menggunakan handphone yaitu dengan Opera Mini 5.0 handler modif khusus telkomsel, yaitu aplikasi browser unternet yang telah dimodifikasi agar dapat melakukan koneksi internet secara gratis, dibawah ini adalah aplikasinya yang bisa anda download.



Categories:
Comments


Memang penghasilan facebook dai iklannya sangatlah besar dari hasil iklan facebook tersebutlah yang mengantarkan sipemilik facebook Mark Zuckerberg, Larry Ellison dan
Dustin moskovitz menjadi orang muda terkaya di Amerika. Memang ada kabar bahwa Sebagian dari hasil facebook digunakan untuk mendanai Operasional Negara Isra'el....!

Sekarang jika ada pertanyaan Setujukah kalian jika Facebook

Categories:
Comments


Ini bukan trik baru tentang cara internet gratis dengan telkomsel flash apalagi bagi para netter pengguna telkomsel tentunya sudah banyak yang tau, kalau belum tau saya tunjukkan caranya?

Tekhnik dasar dari koneksi internet gratis dengan telkomsel flash yaitu mencari IP Address & Port yang terbuka pada jaringan Telkomsel Flash, ketika kita terkoneksi ke jaringan internet kita diberikan no IP

Categories:
Comments

In this Blogger tutorial I show you how to remove the border around images in Blogger posts (Blogspot posts) when using one of the latest default Blogger templates Simple or Awesome Inc.

If you are using an older generation Blogger template or a custom template the solutions contained in this article may work for you however it is more likely that you will need to follow the methods to remove image borders outlined in my previous Blogger tutorial Change or Remove Blogger Image Borders (Part 1)

Below I explore two methods of removing or deleting image borders in the Blogger template Simple. The first method shows you how to remove the image border using Template Designer and the second method outlined describes how to remove the image border manually by changing the code.


Method 1 - Use Template Designer to Remove Image Border in Blogger
  1. From the Blogger Dashboard go to Design > Template Designer

  2. Then select Advanced > Images

  3. Under Border Color use the drop down arrow to open the color palette

  4. Change the setting to transparent by checking the small box on the bottom right hand side marked "transparent"

    How to change the image border to transparent in Blogger
    Note: If you are using the black version of the Awesome Inc template you will need to change the Background Color to transparent too. Click on the down arrow of the color palette and select transparent.

    Remove border Awesome Inc Blogger template
  5. Click Apply to Blog to save your changes to the template

  6. Navigate to any post page to view images in posts without the border


Method 2 - Change Template Code to Manually Remove Image Border from the New Default Blogger Templates
  1. From the Blogger Dashboard go to Design > Edit HTML

  2. Back up your Blogger template

  3. Find this line amongst the declared variables at the top of your template

    <Variable name="image.border.color" description="Border Color" type="color" default="transparent" value="#cccccc"/>

  4. Change to the value of the border color to transparent like so

    <Variable name="image.border.color" description="Border Color" type="color" default="transparent" value="transparent"/>

  5. Save your changes to the template

  6. Navigate to any post page that has an image and see that the border around the image is no longer visible


In this Blogger tutorial (Blogspot tutorial) I have shown you how to remove or delete the border around images in Blogger posts for the newest generation of default Blogger templates Simple and Awesome Inc. I have discussed two different methods to remove the border around the images either by adjusting the settings in the Blogger Template Designer or by manually changing the code of the variable in the CSS styling section of the default Blogger template


Related Articles
List of Blog Know How Tutorials for Blogger Blogs
How to Change or Remove Blogger Image Borders (Part 1)
How to Change the Blog Title Border in Blogger Minima Template
How to Add CSS Styling to Blockquotes in Blogger
How to Align and Justify Posts in Blogger
How to Add a Divider Between Blogger Posts
How to Add or Change a Background Image in a Blogger Template

Comments


Meski termasuk perangkat komunikasi tercanggih saat ini, tetapi tetap saja BlackBerry bisa mengalami masalah. Nah, salah satu masalah yang mungkin saja menghampiri ‘si handset canggih’ milik Anda ini adalah tiba-tiba nge-hang atau restart sendiri.

Masalah tersebut biasanya dapat diatasi dengan melakukan soft reset, yaitu dengan menekan tombol ALT + CAP + DELETE bersamaan dan atau melakukan

Categories:
Comments

Kini hadir layanan broadband di kartu IM3 dan Mentari* Anda, layanan paket data dengan kecepatan tinggi hingga 2 Mbps dengan beragam paket pilihan sesuai kebutuhan Anda.

Tidak perlu ganti kartu dan tidak perlu repot mengaktifkannya.
* Untuk pelanggan Mentari Regular/Bonus/Dasar dapat menikmati layanan broadband ini dengan melakukan pindah paket ke Mentari Sakti dan ke IM3 (REG Mentari/Sakti atau

Categories:
Comments

Dibawah ini adalah beberapa situs penerima hasil photografi fotografi, buat kamu yang mempunyai hobi fotografi ini adalah kesempatan anda, karena situs situs tersebut brani membayar mahal karya-karya anda tersebut, namun ada persyaratan khusus mengenai jual-beli foto tersebut seperti memiliki pasport, sim, dll silahkan masuk kehalaman daftar situs penerima hasil fotografi  

Rekomendasi :
http://

Categories:
Comments


Bagi para gamer mungkin kata ini sangat di kenal yaitu Graphic Card. Bagian yang sangat berpengaruh pada kemampuan game aplagi game sekarang berukuran besar-besar seperti game online point blank dan yang lainnya. Kini ada 2 perusahaan besar yang berkaitan dengan graphic card yaitu NVdia ( Ge Force dan Quadro ) dan Ati ( Radeon dan Fire GL ). 

Bagi yang mempunyai komputer mungkin bagian ini bisa

Categories: ,
Comments

Untuk dapat melakukan koneksi ke internet dengan feature telkomsel flash, sebelumnya pastikan bahwa kamu sudah mendaftar Telkomsel Flash dengan mengetik Flash dan mengirimkannya ke 3636 dan pastikan bahwa driver dari modem tersebut telah terinstall di PC kamu. Jika kamu diminta mengisikan PIN, isikan nomor PIN dari kartu
Telkomsel kamu. sebelumnya jika berminat membaca artikel terdahulu yaitu

Comments


Semakin berkembangngya tekhnology khususnya komputer dan internet, orang selalu ingin dapat mendapatkan informasi dimanapun mereka berada, salah satunya Menggunakan handphone untuk mebuka informasi diinternet atau sekedar chatting sekarang sudah hal yang umum dikalangan masyarakat namun kendala bagi mereka mungkin saja tidak begitu nyaman apabila situs yang akses tidak mendukung untuk mobile

Categories:
Comments




Tekken 3, dulu game ini sempat populer di Indonesia jika kamu seorang gamers pasti tak asing jika dengar nama Tekeen 3, namun sekarang sudah menghilang di dunia entertainment, tapi bukan berarti tak ada karena sekarang kamu bisa download gratis game tekken 3 disini, tekken 3 memang game yang menyenangkan . 




Nama file : Tekken3 PC game
Ukuran file : 35,678 mb
Version : 0.3
OS : Windows
Ram

Categories: ,
Comments



Bagi yang suka dengan game balap bisa didownload gratis moto GP 3 untuk PC full version, Game moto GP 3 ini tampilannya sangat menyerupai sesungguhnya dijamin bakal puas main game ini. selain itu game Moto gp 3 juga sangat ringan.

Minimum System required:
1Ghz Processor
Win98 / ME / Windows 2000 / XP
128Mb Ram
GeForce 3 or above DirectX compatible graphics card
DirectX Compatible Sound Card

Categories: ,
Comments

In this Blogger tutorial I discuss how to change the blog title border color or remove the border in a Blogger template (Blogspot template) by changing either the CSS styling of the border manually or by using the Blogger Template Designer feature.

Lots of bloggers have updated their Blogger template to the new default series of Blogger templates for 2010. There are however many of you who are still using the default Minima template from 2006 (and there are lots of good reasons to do so) so this tutorial is for you and anyone else who is using a custom Blogger template based on Minima.

You will learn how to change the border styling around the blog title to suit your individual requirements. You can either change the border color or remove the border altogether. If you want to remove the border around images in Blogger posts (Blogspot posts) then please refer to my Blogger tutorial How to Add, Change or Remove the Border Image in Blogger Posts

Remove or Change the Blog Title Border in Blogger (Blogspot)
There are two simple ways to remove the border around the blog title in Blogger. We are going to hide the border rather than actually remove the code that creates it by making the border color transparent. I will also show you how to change the border color.

Method 1 discusses how to do this using the Blogger Template Designer while Method 2 describes how to change the blog title border manually by changing the code.



Method 1 - Using Blogger Template Designer

  1. Log in to Blogger
  2. From the Dashboard go to Design > Template Designer
  3. Go to Templates > Advanced > Border Color


  4. Choose the down arrow color picker to activate the color palette window
  5. Choose transparent which is below the color palette to remove the border around the blog title completely. You now will see the blog title border disappear. Or choose a new color from the color palette to change the color

    Remove Blog Title Border in Blogger
    Remove Blog Title Border

    Change Blog Title Border Color in Blogger
    Change Blog Title Border Color

  6. Click on Apply to Blog to save your changes


Method 2
If the Blogger Template Designer is not working on your template for some reason you can tweak the code in your template to remove the border around the blog title

  1. Log in to Blogger
  2. From the Dashboard go to Design > Edit HTML
  3. Back up your Blogger template
  4. Find the border color variable which will be near the top of the template code


  5. Change the border color value to transparent to remove the border altogether so that your code now looks like this:

    <Variable name="bordercolor" description="Border Color"
    type="color" default="#ccc" value="transparent">


    or change the value to a color of your choice eg

    <Variable name="bordercolor" description="Border Color"
    type="color" default="#ccc" value="#ff7f00">

  6. Save your template and view your blog to see that the border around the blog title has been removed or changed color

    Remove Blog Title Border CSS Styling in Blogger


Tips and Troubleshooting
Below are some tips to help you further customize the blog title border width. You can either remove the inner border, thicken the outer border or thicken both borders around the blog title in Blogger.

  1. To change the width of the border around the blog title in Minima change the following:

    #header {
    margin: 5px;
    border: 1px solid $bordercolor;
    text-align: center;
    color:$pagetitlecolor;
    }

    to

    #header {
    margin: 5px;
    border: 10px solid $bordercolor;
    text-align: center;
    color:$pagetitlecolor;
    }

    This code increases the border width from 1px to 10px

  2. To remove the inner border around the blog title in Minima change the code to the following:

    #header {
    margin: 5px;
    border: 10px solid $bordercolor; (remove this line)
    text-align: center;
    color:$pagetitlecolor;
    }

  3. To increase the width of the outer border around the blog title in Minima change this code

    #header-wrapper {
    width:660px;
    margin:0 auto 10px;
    border:10px solid $bordercolor;
    }


In this Blogger tutorial you have learned two methods to change the color of the border around a blog title in Blogger blog (Blogspot blog). I have also shown you how to increase the size of the border width. This tutorial applies particularly to the default Blogger template Minima but also is relevant for any blogger using a custom Blogger template based on Minima. Good luck!


Related Articles
List of Blog Know How Tutorials for Blogger Blogs
How to Add CSS Styling to Blockquotes in Blogger
How to Add, Delete or Remove Blogger Image Borders
How to Align and Justify Posts in Blogger
How to Add a Divider Between Blogger Posts
How to Add or Change a Background Image in a Blogger Template

Comments


Sudah punya akun paypal kalau belum punya silahkan daftar disini panduannya, dah punya tp belum
diverifikasi karena tidak punya kartu kredit, mau pake kartu debit dari
bank Indonesia tidak ada yang support,,,,??? wah gimana ya caranya
setelah melanglang lintang kesana kemari akhirnya aku nemuin posting dari
blogger sebelah dan mengikuti langkahnya ternyata mudah dan diantar
sampai rumah dah

Categories: ,
Comments


 Untuk mengembalikan data yang hilang dari USB flashdisk, MMC atau Flashdrive yang lain kamu bisa gunakan tool Data doctor recovery pendrive, dengan data doctor recovery pendrive kamu tidak khawatitr akan dengan data-data yang terhapus dengan tidak sengaja karena data doctor recovery pendrive akan membantu mencarikan data-data yang hilang.

Data doctor recovery bisa didownload lewat link dibawah

Categories: , ,
Comments

Mungkin bagi para pemilik Netbook/notebook sedikit repot apabila akan melakukan install ulang windowsnya dikarenakan yang tidak memiliki fasilitas CDRoomnya, kecuali sudah memiliki CDR externalnya, tapi jika tidak memiliki CDR externalnya dan ingin menginstall Windows dirumah gmn? Pasti cara dibawah ini install windows XP menggunakan USB Flashdisk dengan bantuan software MultiBoot-10 akan sangat

Categories: , ,
Comments




Upload javascript? DAN mengapa javascripts harus diupload? sebenarnya javascripts tidaklah harus diupload di file hosting karena kita juga bisa langsung menempatkan kode javasript tersebut langsung ke blog kita tanpa harus melakukan upload terlebih dahulu, Saya juga kurang tau persis untuk apa hal ini dilakukan namun yang saya tau hal ini dimaksudkan agar lebih simpel dan disamping itu loading

Categories:
Comments

Kemarin saya sudah posting tentang cara menyembunyikan widget tertentu pada halaman posting yang widget tidak akan terlihat pada halaman posting melainkan hanya terlihat pada halaman utama blog saja, tapi tutorial kali ini membahas kebalikannya yaitu menyembunyikan Widget tertentu pada halaman utama, yang widget tersebut hanya akan terlihat di halaman posting saja :

Caranya sebagai berikut :
1.

Categories:
Comments


Menyembunyikan widget tertentu pada halaman  posting ini maksudnya widget tidak akan muncul pada halaman posting melainkan widget hanya akan muncul pada halaman utama saja, jadi trik ini juga dapat membantu meringankan loading halaman pada blog kamu. trus bagaimana untuk menyembunyikan widget pada halaman utama tutorialnya bisa dibaca disini :

Adapun cara Menyembunyikan widget tertentu pada

Categories:
Comments




Dengan berkembang pesatnya tekhnologi terutama internet, makin hari makin banyak pula pengguna internet terutama di Indonesia yang masuk peringkat 13 pengakses internet terbanyak didunia tapi selain itu Indonesia juga termasuk 10 besar pengakses situs Porno!  hayo.....siapa yang suka akses situs esek-esek! 

Dengan banyaknya operator seluler baik GSM maupun CDMA dan tentunya kita perlu

Comments


Kemarin temen saya nanya bagaimana setting dial-up untuk operator telkomsel, sebenernya saya sendiri juga belum tau persis tentang settingan itu, tapi setelah mencari informasi langsung ke situs operator tersebut akhirnya dapat informasi juga dan juga telah berhasil mensetting Handphone tersebut sebagai modem, dari itu saya juga kepikiran untuk posting artikel tentang Setting Dial-Up Internet

Comments


Agar kita bisa menghemat tempat untuk pada blog, kita bisa menambahkan menu tabview ini. Kadang kita ingin menambahkan banyak widget sedangkan blog kita sudah penuh dengan berbagai macam widget, nah cara lain untuk menghemat tempat pada blog kita selain menambah 3 kolom sibawah header atau menambah 3 kolom diatas footer kita bisa menambahkan tabview menu ini.



Langkanya :
 1. Login ke blogger

Categories:
Comments

Tujuan memasang top komentator antara lain dapat menarik pengunjung diharapkan agar sering bisa memberikan komentar karena widget komentator ini akan menampilkan nama-nama komentator yang paling banyak berkomentar....! jadi siapa yang paling banyak berkomentar namanya akan tampil di hamalan tempat yang kita pasang widget tersebut, juga bisa diartikan juga sebagai tanda terima kasih bagi yang

Categories:
Comments

Popular post (artikel populer) ini biasa dipasang dengan tujuan agar kita dapat mengetahui artikel mana dan apa diblog kita yang paling banyak dibaca, Langsung saja jika berminat memasangnya:Login ke account blogger anda
Masuklah ke  Template >> Layout >> Add a Gadget
Scroll kebawah cari dan klik Popular Posts
Lalu silahkan tentukan berapa posting yang akan ditampilkan
Simpan dan lihat hasilnya

Categories:
Comments


Membuat Read More Otomatis (Automatic Read More + Thumbnail Image)

Read more otomatis (Automatic
Read more ) adalah read more atau baca selengkapnya dengan secara
otomatis mengambil ringkasan dari blog kita di tambah lagi read more otomatis ini juga dapat menampilkan gambar dengan ukuran yang kita inginkan selain itu kita dapat menentukan jumlah  karakter yang akan kita tampilkan. 





Categories:
Comments

In this Blogger tutorial I will show you how to highlight the author comments section of your Blogger template (Blogspot template) using CSS styling.

Benefits of Adding CSS Styling to Author Comments
If you are using a default Blogger template chances are it is difficult to differentiate between comments made by visitors and comments made by you, the blog author. If you only have a few comments per post that may not be enough of an issue for you. If however, you have some posts with lots of comments you may need to make your remarks stand out from those of your visitors. We can do that by adding CSS styling to highlight your author comments.

What Will I Learn in This Tutorial?
In this Blogger tutorial you will learn how to easily add some highlighting to your comments so that they will never get lost in the crowd again. This requires a small amount of tweaking to your Blogger template which is not difficult to do if care is taken. The image below shows one example of what can be achieved using this Blogger hack and some CSS styling.



Will This Blogger Hack Work on My Template?
I have tested this Blogger hack on both the old generation of Blogger templates (Minima and Sand Dollar) and the latest generation of default Blogger templates eg Simple. It will also work on custom templates as the comments code is likely to be very similar.

If you are using a custom Blogger template and run into difficulty you can also try this alternative method to highlight author comments in Blogger posts

How to Add CSS Styling to Author Comments in a Blogger Post
The following instructions will highlight author comments in the comments section of a Blogger post. The code creates a shaded box around the comments made by the blog author. These changes will not affect the CSS the styling of any of the other comments made.

Instructions to Add CSS Highlighting to Author Comments in Blogger

  1. Login to Blogger

  2. From the Dashboard go to Design > Edit HTML

  3. Back up your template by downloading it to your computer

  4. Check the Expand Widget Templates checkbox on the top righthand side

  5. Use CTRL + F by entering the following into the search box

    <dd class='comment-body'>

  6. Immediately above this line paste the following code:

    <b:if cond='data:comment.author == data:post.author'>
    <dd class='comment-body-author'>
    <p><data:comment.body/></p>
    </dd>
    <b:else/>

  7. Now look for this code block

    <dd class='comment-body'>
    <b:if cond='data:comment.isDeleted'>
    <span class='deleted-comment'><data:comment.body/></span>
    <b:else/>
    <p><data:comment.body/></p>
    </b:if>
    </dd>

    and paste </b:if> immediately after it.

  8. Your code will now look like this:

    <div expr:id='data:widget.instanceId + &quot;_comments-block-wrapper&quot;'>
    <dl expr:class='data:post.avatarIndentClass' id='comments-block'>
    <b:loop values='data:post.comments' var='comment'>
    <dt expr:class='&quot;comment-author &quot; + data:comment.authorClass' expr:id='data:comment.anchorName'>
    <b:if cond='data:comment.favicon'>
    <img expr:src='data:comment.favicon' height='16px' style='margin-bottom:-2px;' width='16px'/>
    </b:if>
    <a expr:name='data:comment.anchorName'/>
    <b:if cond='data:blog.enabledCommentProfileImages'>
    <data:comment.authorAvatarImage/>
    </b:if>
    <b:if cond='data:comment.authorUrl'>
    <a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
    <b:else/>
    <data:comment.author/>
    </b:if>
    <data:commentPostedByMsg/>
    </dt>


    <b:if cond='data:comment.author == data:post.author'>
    <dd class='comment-body-author'>
    <p><data:comment.body/></p>
    </dd>
    <b:else/>


    <dd class='comment-body' expr:id='data:widget.instanceId + data:comment.cmtBodyIdPostfix'>
    <b:if cond='data:comment.isDeleted'>
    <span class='deleted-comment'><data:comment.body/></span>
    <b:else/>
    <p>
    <data:comment.body/>
    </p>
    </b:if>
    </dd>

    </b:if>

    </dd>
    <dd class='comment-footer'>
    <span class='comment-timestamp'>
    <a expr:href='data:comment.url' title='comment permalink'>
    <data:comment.timestamp/>
    </a>
    <b:include data='comment' name='commentDeleteIcon'/>
    </span>
    </dd>
    </b:loop>
    </dl>
    </div>

  9. Now using CTRL + F again find this line ]]></b:skin>

  10. Paste the following immediately before ]]></b:skin>

    .comment-body-author {
    background: #f5deb3;
    border: 2px solid #de7008;
    padding: 5px;
    }

  11. Save your template changes

  12. Click on View Blog and go to a post that you have commented on to see the CSS styling has highlighted your comments.


Alternative Method to Add Highlighting to Author Comments in Blogger
The following method will also add highlighting to author comments in Blogger and can be used if you have difficulty with the first method. It does however involve changing some code rather than just adding some so this is not as desirable in terms of future proofing your template for Blogger updates.



  1. Login to Blogger

  2. From the Dashboard go to Design > Edit HTML

  3. Back up your template by downloading it to your computer

  4. Check the Expand Widget Templates checkbox on the top righthand side

  5. Find the following section of code by using CTRL + F and entering <data:comment.body/> into the search box

    <span class='deleted-comment'><data:comment.body/></span>
    <b:else/>
    <p><data:comment.body/></p>
    <b:include data='comment' name='commentDeleteIcon'/>
    </b:if>

  6. Replace with the following code after <span class='deleted-comment'> and before </b:if> as shown in red:

    <span class='deleted-comment'>
    <!--Highlight Author Comments Start-->
    <b:if cond='data:comment.author == data:post.author'>
    <p class='comment-body-author'><data:comment.body/></p>
    <b:else/>
    <p><data:comment.body/></p>
    </b:if>
    <!--Highlight Author Comments End-->

    </b:if>

  7. Use CTRL + F to find ]]></b:skin> that closes the CSS styling section

  8. Paste the following code immediately above ]]></b:skin>

    p.comment-body-author {
    background: #eeeecc;
    border: 2px solid #335577;
    padding: 5px;
    color:#558866;
    }

  9. Save your template

  10. Click on View Blog and navigate to a post that you have commented on to see the that your comments will now be highlighted


In this Blogger tutorial you have learned two different methods to add CSS styling to highlight the author comments in your Blogger posts. Obviously there is still some work to do on your part to adjust the colors in the CSS styling to match the color scheme of your blog. Good luck!


Related Articles
List of Blog Know How Tutorials for Blogger Blogs
Embedding a Comment Form Below Each Post
How to Get More Comments on Your Blogger Blog
Add Missing Embedded Comment Form to Blogger

Comments

Jika kemarin saya pernah posting bagaimana menambahkan 3 kolom dibawah header, tapi sekarang saya akan posting tentang cara menambahkan 3 kolom diatas footer, tujuan menambah kolom ini tidak lain yaitu memberikan ruang baru untuk widget apabila sudah tidak mencukupi untuk dipasang widget baru lagi. sebenarnya caranya hampir sama dengan menambah 3 kolom dibawah header namun perbedaannya hanyalah

Categories:
Comments

Memasang berbagai macam widget di blog memang membuat blog ramai dan kelihatan menarik, tapi ruang sidebar untuk blog kita terbatas bila kita hanya terus menambah widget tanpa menyeimbangi dengan menambah kolom baru alhasil blog kita malah tak rapi atau acak-acakan, nah untuk mengatasi hal tersebut kita bisa menambahkan kolom baru kedalam blog kita misalnya dibawah header atau bisa juga

Categories:
Comments

In the Blogger tutorial I discuss how to add internal links within your Blogger posts (Blogspot posts) to point to either another section within the same post or to another post.

There are lots of times when you may want to direct a reader to a different part of your Blogger post depending on what their needs and interests are. Or you might want to alert the visitor to something significant in a related post. In this article I will show how to make use of internal links both within posts and in Blogger generally.

Why bother with internal linking you may be wondering? Well the answer is to improve SEO. Blogs with a good internal linking structure will fare better than blogs that don't link posts. Plus you will be creating an aid to navigation for your reader. On longer posts jumps links to different sections within your post or to other posts mean readers can quickly find the information they are looking for.

How to Create Internal Links To Sections Within the Same Blogger Posts

How to Create Internal Links To Sections Within Different Blogger Posts

How to Create Internal Links To Sections Within the Same Blogger Post
Consider the above links. Click on them. Each jump the reader to a different part of this article. This type of internal linking is common practice in website building and can be equally applied to blogs to assist with navigation.

How did I create these links? The answer is that I used simple html that anyone can learn in a few minutes. Here are the steps I used to create these links.

  1. Log in to Blogger

  2. Go to Posting > New Post or Edit Post and either create a new article or edit an existing one.

  3. Within the article find a place where you want to add some jump links. This will be early on in the article as it will help the reader figure out what information is significant to them and how to get there quickly

  4. Switch to the Edit HTML mode rather than compose mode so you can see the code you are inserting into your post

  5. Create a couple of headings that will be your links to material further down in your Blogger article. Note you can also just jump to a word but for the purposes of this demonstration and clarity I am going to use headings. When creating this post I used the following headings:

    How to Create Internal Links To Sections Within the Same Blogger Post
    How to Create Internal Links To Sections Within Different Blogger Posts

  6. Add links to your headings like so:

    <a href="#withinposts">How to Create Internal Links To Sections Within the Same Blogger Post</a>

    <a href="#withinblogger">How to Create Internal Links To Sections Within Different Blogger Posts</a>

    • The href attribute and closing </a> element is the same structure you use for other links in your blog

    • Each identifier is preceded by a hash mark (#). The # tells the visitor's browser to look for a section within your post

    • Each link identifier needs its own unique identifier and needs to be enclosed in inverted commas. Use a name that reflects the link you are creating if possible as it will make it easier to identify on a page with a lot of internal jump links.

  7. Now go to the first point in your post where you want to jump the reader to. This will be the start of some new idea, section or logical split in the information.

  8. At this point create your anchor text by first adding your heading and then enclosing your heading with this anchor structure.

    <a name="identifier">a heading</a>

    • Note the use of the name attribute at the beginning and the </a> element at the end

    • Each link identifier needs to be enclosed in inverted commas. Make sure to match up the correct identifier with the one created in step 6


    Using this anchoring structure our first anchor becomes:

    <a name="withinposts">How to Create Internal Links To Sections Within the Same Blogger Post</a>

    Substitute your own link identifier and headings

  9. Now move on to the next point you want to link to and create the second anchor. In this example we use the same structure but change the identifier

    <a name="withinblogger">How to Create Internal Links To Sections Within Different Blogger Posts</a>

    Again substitute your own link identifier and headings to suit your article

  10. Save and Publish as normal and you will see your links are live and will jump the reader to different parts of the post


How to Create Internal Links To Sections Within Different Blogger Posts
Now you know how to create links to sections within Blogger posts let's look at how to create internal links within different Blogger posts.

Most of you will be able to create a link to another post in Blogger using the posts editor. You just highlight the text you want and click on the figure eight icon and Blogger creates the link for you. Which is great most of the time.

However what if we want to direct the visitor to a particular section of a different post? When you create an internal link it will take the viewer to the top of the page but what if you want them to see something near the end of the article? Well using an internal link similar to what we did to create internal links within the post we can.

Say I want to take my reader to a particular post in this case Blogger SEO Tips and Tricks. How would I go about it?

  1. I create the link as usual by copying the article URL address from the browser address bar and using the post editor to add the link. The Blogger post editor uses this structure:

    <a href="URLaddress">linkname</a>

    So the Blogger editor would create the following link:

    <a href="http://blogknowhow.blogspot.com/2009/05/blogger-blogspot-seo-tips-and-tricks.html">Blogger SEO Tips and Tricks</a>

    The link would appear like this in a browser:

    Blogger SEO Tips and Tricks

  2. Now I want to direct my visitors to the section about creating breadcrumb navigation so I add a section name using the following structure:

    <a href="URLaddress#identifier">linkname</a>

    Thus my link would look like this in the Edit HTML section of my post editor

    <a href="http://blogknowhow.blogspot.com/2009/05/blogger-blogspot-seo-tips-and-tricks.html#breadcrumb">Blogger SEO Tips and Tricks</a>

    Note the link seen in a browser remains the same

  3. If you want your link to open in a new browser window add the following to your link:

    <a href="http://blogknowhow.blogspot.com/2009/05/blogger-blogspot-seo-tips-and-tricks.html#breadcrumb" target="_blank">Blogger SEO Tips and Tricks</a>

  4. Now I need to go to the post I am linking to and add the anchor. So in the post SEO Tips and Tricks I would use the following structure to link to the section about how to add breadcrumbs:

    <a name="identifier">a heading</a>

    So the section about breadcrumbs in the Blogger SEO Tips and Tricks article is now enclosed by the following:

    <a name="breadcrumb">Add Breadcrumb Navigation to your Blogger Blog</a>


    If you now click on the link below you will see that your browser open a new window and take you directly to the section about adding a breadcrumb to your blog.

    Blogger SEO Tips and Tricks

  5. Save your changes and publish your article as normal


In this Blogger tutorial you have learned how to add internal links to a particular section of a post from both within the same Blogger post and within a different post. By adding internal links you will help your visitors to find their away your blog more easily and access information quickly. You will also be adding to your blog's SEO by linking related posts.


Related Articles
List of Blog Know How Tutorials for Blogger Blogs
Blogger SEO Tips and Tricks

Comments

Buat yang mania' sama game Point Blank  ne ada point blank yang versi offline jadi bisa dimainin sendiri dirumah tanpa perlu terhubung ke server, lumayanlah bisa untuk melatih skil bermain biar kalau main online sudah lihai!
Year : 2009
Genre : Action (Shooter) / 3D / 1st Person
Developer : NCSoft and Zepetto
Publisher : 4Game and Innova Systems
Platform : PC

System Requirements:
Windows

Categories: ,
Comments




Game billiard master untuk PC dengan tampilan 3D yang hampir realistis sangat cocok untuk kamu yang suka dengan game board, kalau mau game billiard 3D yang training edition bisa masuk kesini gan!

Persyaratan untuk game Billiard Master
Compatible untuk semua windows
Min 233 MHz
Min 32 RAM



Download sekarang

Categories: ,
Comments


Setelah nyoba pasang clicksor memang blog jadi ramai iklannya tapi apakah ini tidak akan mengganggu pengunjung dan kinerja blog hemmmm....coba dulujadeh, syaratnyapun tidaklah sulit karena juga menerima publisher dari Indonesia selain itu nilai perkliknya juga lumayan tinggi antara $.0.4 sampai $.0.8 inilah yang membuat saya tertarik untuk mereview.
Langkah-langkah mendaftar Clicksor :
1.

Comments

In today's Blogger tutorial I am going to show you how to add a Flickr Slideshow (Flickr Photostream) to a Blogger blog (Blogspot blog). This Blogger tutorial is suited to beginners and newbies to Blogger and contains step by step instructions to create your Flickr slideshow.

This Blogger slideshow tutorial covers the steps to insert a slideshow widget (slideshow gadget) in the sidebar or footer of Blogger and display a set of images uploaded to Flickr. Note the maximum number of images displayed in the slideshow is 20.

There are several different methods to add a Flickr slideshow to Blogger. Which method you use is largely dependent on your own individual requirements. I cover two different methods in the tutorial.

Method 1 - Add a Flickr Slideshow Gadget to Blogger - Photos in photostream are not organized into sets

Method 2 - Add a Flickr Slideshow Gadget to Blogger to display images that are organized in a set


Method 1 - Add a Flickr Photostream to Slideshow Gadget in Blogger

If you will only ever add one slideshow to Blogger from Flickr and don't want to bother with sets use this method to quickly and easily add your Flickr slideshow to Blogger:

  1. Go to Flickr and find your Photostream link. On your home page when logged into Flickr you will see Your Photostream at the top left under the Flickr salutation


  2. Click on the Your Photostream link and copy the photostream id from your browser address bar.

    http://www.flickr.com/photos/27647187@N07/
    It will look something like this. Copy the identifier eg 27647187@N07

  3. In Blogger go to Design > Page Elements

  4. Select Add Gadget from the sidebar or footer depending on where you want to place your Flickr slideshow

  5. Choose Slideshow from widgets in the Basics list

  6. Choose a title for your slideshow or leave blank

    How to Add a Slideshow to Blogger
  7. Under Source use the drop down menu to select Flickr

  8. Under Option select User

  9. Under Username enter you Flickr Photostream id eg 27647187@N07.

    Note:If you have entered your Flickr Photostream id correctly you will be able to see a preview of your slideshow.

  10. Click on Save and then View Blog to see your new Flickr slideshow in action on your Blogger blog

    How to Add a Flickr Slideshow Gadget to Blogger


Method 2 - Add a Flickr Photostream Set to a Slideshow Gadget in Blogger

If you use sets in Flickr to organize your photos and images you will need to use a slightly different method to install a Flickr slideshow into Blogger.

  1. Log on to Flickr

  2. Upload your photos and create sets to organize your photos if desired

  3. Go to view your sets in Flickr and select the set you wish to use for your Blogger slideshow

  4. In your browser window you will see a URL address similar to the following:

    http://www.flickr.com/photos/27647187@N07/sets/72157624508265319/

  5. There are two important parts to this address that you need to note because we will be using these to create our slideshow:

    • Your photostream - designated by something similar to 27647187@N07

    • The id of the set - designated by something similar to 72157624508265319



  6. In a different browser window log on to Blogger if not already logged in

  7. Go to Design > Page Elements

  8. Select Add Gadget from the sidebar or footer depending on where you want to place your Flickr slideshow

  9. Choose Slideshow from the list of Basics Widgets

  10. Click on the blue plus sign to the right of the Slideshow gadget to activate and configure your Blogger Flickr Slideshow

  11. Choose a title for your slideshow or leave blank

  12. Under Source use the drop down menu to select Other (Note do not select Flickr if you are using a set as this will not work - see Method 1)

  13. In the Feed URL section enter the following feed:

    http://api.flickr.com/services/feeds/photoset.gne?set=72157624508265319&nsid=27647187@N07&lang=en-us&format=rss_200

  14. Substitute your photostream id (this will unique to your Flickr account)

  15. Substitute the id of the set of images you wish to display


  16. Leave the speed of the slideshow at medium unless you specifically need it to be faster or slower

  17. Click on Save

  18. Click on the View Blog link to admire your new Flickr slideshow


In today's Blogger tutorial you have learned two different methods to add a Flickr slideshow to Blogger. Both methods use the Blogger Slideshow Gadget but the difference between them is that method 2 shows you how to use a selected part of your Flickr photostream to create a Blogger slideshow for your blog instead of your whole Flickr photostream. Hope you have lots of fun with this Blogger slideshow gadget. Enjoy!


Related Articles
List of Blog Know How Tutorials for Blogger Blogs

Comments

Apakah kamu suka bermain game dan salah satu penggila berat game-game, jika ya pernahkah berfikir bagaimana membuat game sendiri dan kemudian memainkannya? Sulit da repot ya apalagi bagi seorang yang buta akan bahasa pemograman seprti saya, tapi sekarang semua itu bisa teratasi jika memang ada kemauan bahkan tanpa harus mengerti bahasa pemograman, jawabannya yaitu Game maker! ya...game maker

Categories: , , ,
Comments


Karena tertarik untuk membuat iklan melayang diblog ini akhirnya saya coba juga  deh, sapa tau dapat meningkatkan klik he..he..namanya juga usaha semua harus dicoba, namun kekurangannya mungkin pengunjung akan sedikit terganggu dikarenakan kemunculan iklan tersebut setiap kali membuka halaman blog tersebut dan harus melakukan klik 2 kali pada tombol close untuk menghilangkannya disamping

Categories:
Comments


Berikut ini adalah cara menggunakan cheat untuk point blank 

Pertama silahkan download dulu disini cheatnya 






Agar Peluru tak habis-habis

Login ke Game, Open Enginer, Open Prosses, jgn lupa check list check box yang dekat tanda OK
Scan First menggunakan Byte sesuai peluru yang ada di senjata, contoh : mp7 = 30
Scan Second, tembakan senjata kalian tapi jangan sampai habiz, lalu
angka yang

Categories: ,
Comments




Dibawah ini yaitu cheat point blank yang dapat kamu gunakan, dan
mempunyai tingkat keberhasilan mendekati 100%, Namun perlu kamu ketahui bahwa menggunakan Cheat ini dapat menyebabkan Akun PB km dibanned atau dihapus dari server Gemscool! Kalau bisa
usahakan jangan terapkan cheat ini di warnet karena jika diketahui oleh pihak GM,
IP warnet tempat anda bermain bisa kena ban, yang rugi si

Categories: , ,
Comments


Jika kamu telah mendownload game Point blank gratis di posting saya yang sebelumya, jika kamu belum pernah menginstall game tersebut dibawah ini saya tunjukkan langkah-langkah menginstall game point blank gratis.

Jika belum download silahkan masuk Klik disini  untuk mendownload game PB gratis

Jika sudah Cek terlebih dahulu spesifikasi sistim komputer yang tersedia pada PC kamu, apakah memenuhi

Categories: , ,
Comments




Jika kamu adalah penggemar game online pasti sudah tidak asing dengan PB (Point-blank) game ini merupakan game online pc yang populer saat ini di Indonesia, Hampir semua warnet telah menyediakan pasti menyediakan game point blank ini karena memang asyik sih...saya sendiri salah satu maniak-nya....hehe.! Karena itulah sayapun install game Online yang satu ini agar bisa main dirumah sepuasnya...

Categories: , ,
Comments

Pasang kotak komentar facebook diblog, Kotak komentar facebook bisa kita pasang pada blog atau website kita, selain untuk memudahkan para pengunjung blog juga dapat meningkatkan trafik blog kita tersebut. Dengan plugin kotak komentar facebook ini terbukti dapat mendongkrak pengunjung blog, ini telah saya buktikan diblog saya yang lain.
Mengapa bisa demikian? Ya karena Ketika ada seseorang yang

Comments

Ketika membuat posting ada kalanya kita ingin membuat variasi pada link atau tautan yang akan kita pasang misalnya saja membuat link terbuka dihalaman baru / tab baru, hal tersebut dimaksudkan agar pembaca tidak begitu saja meninggalkan halaman blog kita karena link yang diklik terbuka dihalaman baru dan halaman pada blog yang sedang dibaca tidak hilang tertutup.
Nah ada cara selain membuat link

Categories:
Comments

Jika kamu seorang blogger pasti akan merasa khawatir bila pengunjung blog atau websitenya begitu cepat pergi dikarenakan membuka link keluar pada halaman yang sama atau halaman terbuka tidak pada halaman baru dan akhirnya pergi padahal ads-nya juga belum di klik,....uh sedih, sebagai seorang blogger hal ini jangan sampai terjadi, nah untuk mengatasinya caranya dibawah ini agar Link-link yang kita

Categories:
Comments





Template informations :

Name Apps-zone
Type Blogger / Blogspot
Author http://www.templatemaxs.com
File size 62 kb
Template instruction How to install  
Added 09 Nov 2010
Properties 3 collumns, 2 right sidebar, ads ready 480x60, 125x125, purple, light, blogger, fixed collumn,




Download now


Live demo



Mengganti logo :
Logo berukuran Lebar 270px dan tinggi 100px, Uploadlah

Comments

Keygen generator asissten 1.1 | Free downloads software and games

Categories:
Comments




Mengumpulkan Dollar di MicroWorkers.com
Siapa bilang mencari uang diinternet harus memiliki Blog atau website! Mencari penghasilan diinternet tidaklah harus memiliki sebuah blog atau website melainkan cukup dengan kemauan dan kemampuan kita mengoprasikan komputer dan internet saya kira hal itu bukanlah hal yang sulit!
Salah satu bisnis online yang cukup menjanjikan yaitu Microworkers,

Categories:
Comments

Inqbation.com sebuah perusahaan yang bergerak dibidang webdesign, Search engine optimized (SEO) dan theme wordpress design, jika anda sedang membutuhkan jasa designed web dan optimized untuk web anda Inqbation.com tempat yang tepat.
Karena Inqbation.com ditangani langsung oleh para ahli yang professional dibidangnya jadi anda dijamin gak bakal rugi menggunakan jasa dari Inqbation.com.

Tertarik

Categories:
Comments


Seperti kita ketahui saat ini facebook merupakan salah satu situs terbesar yang bergerak dibidang jaringan sosial pertemanan, Kepopuleran Facebook telah memberikan kekayaan yang melimpah kepada pendirinya. Tiga
orang pemuda pendirinya kini ada dalam daftar 400 orang terkaya AS dan orang muda terkaya di AS. 



1. Mark Zuckerberg

Pendiri dan CEO Facebook yang kini berusia 26 tahun,
Mark

Categories:
Comments



Download game gratis billiard 3 dimensi bagi yang suka bermain game board silahkan bisa di download gratis.

Nama file : Pool 3D
Version : 1.5
Ukuran file : 1.9 mb
Tahun : 2010


Download sekarang
Update : kalau mau download Game master billiard PC 3D silahkan klik link dibawah ini!

Game master billiard PC 3D

Categories: ,
Comments



Cara ini saya dapatkan dari salah satu forum yang saya ikuti.
Langsung saja bagaimana caranya:

Buka situs http://www.themobiletracker.com/
Pilih lokasi negara nomor yang akan dituju.
Masukan nomor HP orang yang akan dituju.
Tunggu beberapa saat. Satelit akan melacak dimana posisi pemegang HP
Situs akan menampilkan peta lokasi di mana pemegang HP berada (real time seperti Google Earth!)

Bagi

Categories:
Comments

Salah satu cara mempercepat koneksi internet yang lambat yaitu dengan mengggunakan bantuan software privoxy, mengapa saya memilih privoxi ini dikarenakan program yang berukuran kecil dan mudah digunakan untuk diubah sesuaian.



Silahkan download dulu Privoxy-nya Disini
Kemudian install dan untuk mengaktifkasn privoxi-nya anda bisa menggunakan pengaturan default atau jika anda ingin mengubah

Categories:
Comments


Bermain facebook memang mengasyikkan, siapa yang gak kenal facebook?  Facebook merupakan salah satu situs yang bergerak dibidang jaringan sosial ini termasuk web kedua yang paling banyak diakses dari seluruh penjuru. banyak orang-orang memanfaatkan situs pertemanan ini dimanfaatkan untuk berbisnis mencari pacar dan lain sebagainya. bahkan ada pula yang menyalah gunakan untuk berbuat kejahatan

Categories:
Comments


Lama sekali gak update di blog ini, sebenernya tutorial tentang bagaimana upload foto ke facebook sudah banyak sekali tapi gak papalah dari pada gak update sama sekali, ya...untuk nambah artikel saja. dulu pernah saya posting tentang bagaimana upload foto langsung ke profil facebook tapi sekarang saya posting tutorial cara menambahkan foto ke album facebook. yuk kita lanjutkan...!

- Unggah dan

Categories:
Comments



Salah satu keunggulan platform wordpress yaitu bisa di opreasikan secara Offline dengan komputer kita tanpa harus terhubung ke internet secara langsung, jadi buat yang pingin belajar tentang wordpress hal ini harus dilakukan selain untuk dipelajari strukturnya kita juga bisa belajar membuat theme wordpres.

Apa yang diperlukan untuk bisa melakukan hal diatas? yang kita perlukan yaitu dibawah

Comments




Setelah setahun ikut berkiprah didunia blogger khususnya blogspot sekarang pingin mulai mengenal mesin wordpress, karena setelah mencoba blog berplatform wordpress ini ternyata wordpress mengasikkan dan membuat saya ketagihan untuk terus mengenal lebih dalam salah satu CMS (Content Management System). Dulu memang perkenalan pertama didunia blogger yaitu wordpress karena bagi seorang pemula

Categories:
Comments



Template informations :

Nama The news
Type Blogger / Blogspot
Author templatemaxs.com
File size 21. kb
Help How to install template  
Added 13 Agustus 2010
Properties 3 columns, blue, light, simple, gallery, magazine style



Unduh sekarang


Live demo




Mengganti logo :
Untuk mengganti logo silahkan, Masuk ke Dasboard>> Desain>> dan Edit HTML kemudian cari kode dibawah ini dan

Comments


Sebelum membuat sebuah blog ada beberapa hal yang harus anda tentukan pertama apa tujuan anda membuat blog, yang kedua konten apa yang akan anda bahas dalam blog tersebut misalnya untuk catatan saja, berbagi pengalaman, menulis cerita bisnis atau untuk yang lainnya. Mungkin Dulu, untuk membuat aplikasi web atau blog diperlukan pengetahuan khusus tentang pemrograman HTML, PHP, CSS dan lainnya,

Categories:
Comments






Seperti apa sih subdomain itu? seperti yang banyak kita lihat jika saja kita berkunjung ke suatu website pasti memiliki subdomain sendiri dari domain utamanya, contohnya domainkamu.com maka kamu bisa membuat subdomain sendiri misalnya blog.domainkamu.com atau forum.domainkamu.com inilah yang disebut subdomain dan yang nantinya bisa kita redirect ke blogger, mungkin akan lebih terlihat

Categories:
Comments






Sebenarnya semua hal ada banyak cara, tapi tergantung kita juga seberapa besar minat & keinginan kita untuk meraih sesuatu, termasuk hal yang akan saya bahas ini yaitu mendaftar google adsense lewat indyarocks, jika kemarin saya berbagi tentang daftar google adsense via Docstoc kalau ini tutorial bagaimana mendaftar google adsense dengan Indyarocks, yaitu sebuah situs jejaring sosial dari

Comments


Imcrew.com yaitu sebuah inovasi baru untuk menghasilkan uang didunia maya, kita dapat belajar metode baru untuk menghasilkan uang secara online dengan rinci langkah demi langkah dengan petunjuk yang diberikan oleh pihak ImCrew tersebut Dan Program ini benar-benar gratis, dan Anda akan memiliki kesempatan untuk mendapatkan uang dengan cara mempromosikan artikel-artikel yang akan disediakan oleh

Categories:
Comments



Untuk mendaftar Klik disini
Untuk penjelasannya Klik disini

Categories:
Comments

Lagi browsing nemu Bisnisan online lagi yang lumayan mudah ne Yaitu Daceband, kalau kemarin saya pernah posting tentang Cloudcrowd. tapi sekarang DaceBand, daceband yaitu sebuah situs jejaring Sosial (Social Networking) yang memberikan kesempatan pada membernya untuk memperoleh income Dollar gratis secara rutin dengan beberapa cara sharing konten kita Seperti Video,Foto,MP3,Artikel saja,atau

Categories: ,
Comments


Lama gak apdet ne...ya biasa sih alasannya karena males...he..he! tapi kali ini saya akan bagi-bagi info saja tentang situs yang melayani jual dan beli photo, gambar ilustrasi, template pokoknya yang berupa dokumen digital secara online. jika kamu mempunyai dokument atau photo atau apapun itu daripada gak kepake yang akhirnya masuk tong sampah sekarang mendingan uangkan saja berikut beberapa

Categories:
Comments

Sebelumya saya jelaskan sedikit tentang apa itu paypal, barang kali ada yang belum jelas mengenai paypal?
Paypal yaitu sebuah rekening online yang berguna untuk melakukan transaksi jual beli di internet, Dengan memiliki akun paypal kita bisa membeli atau menjual barang lewat internet dengan mudah jadi kita tidak perlu menggunakan kartu kredit jadi lebih cepat dan lebih aman tentunya, tidak hanya

Categories: ,
Comments

Tak harus menjadi seorang fotografer untuk bisa menjual foto-foto atau gambar, dijaman yang serba maju ini anda pun bisa menjual foto aatau gambar anda tak peduli itu foto amatir atau profesional, 123rf.com akan menjualkan foto kamu secara online kepada mereka sang pengoleksi foto atau gambar ilustrasi, dengan cara yang cukup mudah.
123rf adalah salah satu situs menyediakan jual beli foto baik

Categories:
Comments

Dalam dunia blogger mengapdet blog dengan memposting artikel menjadi suatu kewajiban dalam kesehariannya bahkan tidak sedikit pula bagi mereka sehari lebih dari 1, 2 atau bahkan 5 kali hal ini diharapkan agar blog kita selalu membawa nuansa yang segar dengan selalu terapdetnya blog, tanpa disadari bahwa hal tersebut akan menyebabkan blog kita dianggap memiliki duplikat konten seperti tag judul,

Categories: ,
Comments

Siapa ya dijaman sekarang seperti ini yang tak kenal dunia maya dengan populernya sebuah situs jejaring sosial pertemanan yaitu Facebook semua umur mulai Anak-anak sampai orang dewasapun semua terkena demam program tersebut. Untuk bisa menikmati layanan facebook tersebut kita memang tidak dipungut biaya apapun akan tetapi kita hanya akan dikenakan biaya akses ke internetnya saja, Kalau kita Maen

Categories:
Comments

Masukkan kode HTML anda pada form dibawah ini, ini digunakan antara lain untuk menampilkan kode HTML pada postingan dan untuk menyisipkan iklan google adsense di template XML anda.

Categories: ,
Comments

Ingin bisa internetan gratis tanpa harus keluar duit, ada solusi untuk melakukannya yaitu dengan UltraVPN final, Agar kita bisa menggunakan internet gratis Caranya :

Download dulu UltraVPN Final
Install dikomputer kamu
Jika sudah diinstall lihat icon UltraVPN taskbar dibagian kanan bawah
Lakukan setting untuk menyesuaikan koneksi yang kamu ingin gunakan untuk daftar account dan info jelasnya

Comments


Kemarin saya sempat ragu-ragu sewaktu mengerjakan job dari Cloudcrowd takutnya sudah capek-capek nanti scam lagi, eh ternyata salah perkiraan saya salah, Cloudcrowd di facebook bukanlah scam karena terbukti membayar, saya telah mengikuti selama 3 hari dan juga menerima pembayaran 3 kali dan saya pun telah melakukan gugling ternyata sama dengan mereka-mereka yang mengikuti sudah menerima

Categories:
Comments




Baru saja ne main di CloudCrowd di facebook, karena memang hasilnya yang lumayan tidak ada salahnya saya berbagi dan mereview tentang Cloudcrowd di facebook  mungkin saja ada rekan blogger yang belum mencoba.

CloudCrowd yaitu aplikasi di facebook yang memberikan komisi kepada membernya dengan cara yang bermacam-macam mulai dari review, tulis catalog, translator review image dan masih banyak

Categories:
Comments

Rating Bintang disebuah posting berfungsi bagi para pembaca untuk memberikan penilaian terhadap suatu artikel tersebut agar kita dapat mengetahui seberapa ketertarikan pembaca terhadap posting kita, rating ini kebanyakan berbentuk bintang tapi ada juga yang berbentuk lain tergantung selera seseorang tersebut dan terletak dibawah tiap posting. sebenarnya dari blogger sendiri juga telah menyediakan

Categories:
Comments

Pernahkah kamu berfikir apa yang akan facebook lakukan bila pengguna facebook meninggal dunia? karena kita manusia dan pasti akan mati, kemudian bagaimana dengan akun facebook tersebut yang masih terdaftar. Layanan jejaring sosial itu telah memiliki rencana dan akan ‘memonumenkan’ pengguna Facebook yang telah tiada. Facebook menawarkan layanan untuk ‘memonumenkan’  akun profil Facebook pengguna

Categories:
Comments


Bagi yang ingin meningkatkan pendapatan google adsense bisa mencoba menggunakan keyword dibawah ini, 100 daftar list dibawah ini adalah high paying keyword google adsense tahun 2010, menentukan content yang tepat merupakan salah satu cara yang efektif untuk meningkatkan pendapatan google adsense.
Semoga saja dengan daftar high paying keyword dibawah ini pendapatan kamu bisa meningkat.

1.

Categories:
Comments


Tutorial kali ini saya akan membahas bagaimana mendaftar google adsense via docstoc ini merupakan pengalaman saya, dan ditujukan bagi siapa saja yang ingin memiliki akun google adsense tapi masih selalu ditolak, cara ini bisa menjadi alternatif untuk mendaftar google adsense karena memang sampai saat ini masih ampuh. Mungkin artikel seperti ini sudah banyak yang posting tapi artikel ini saya

Categories:
Comments




Dalam pembuatan sebuah program komputer dibutuhkan keahlian khusus dalam bidang visual basic terutama dalam membuat sebuah virus, tapi mungkin itu dulu karena perkembangan teknologi yang sangat pesat ini semua bisa cepat dengan otomatis semua akan cepat berubah. Salah satunya dalam hal membuat Virus, dulu hanya sebagian orang saja yang mampu menciptakan sebuah virus yaitu orang yang menguasai

Comments

Para pengguna komputer mungkin sudah tau apa itu virus dan sejenisnya jadi tidak usah saya jelaskan tapi kalau belum tau apa itu virus silahkan baca disini, tapi untuk cara membuat virus mungkin banyak yang belum tau jadi tutorial kali ini akan menuntun langkah-langkah membuat virus sendiri dengan notepad.
lanjutkan yuukk....
1. Pertama silahkan buka notepad
2. Copy dan paste kode dibawah ini

Comments

Posting ini masih berhubungan dengan posting yang kemarin yaitu cara membuat virus sendiri dengan notepad, tapi perbedaannya virus kali ini memang lumayan sederhana tetapi memberikan efek yang lumayan ya bisa dikatakan lebih meningkat 1 level lah.
caranya dibawah ini!

1. Buka notepad
2. Copy dan paste kode dibawah ini pada notepad

::__---Virus name Created By Virus Author---__::
@echo off
::---

Comments

Kemarin saya sudah posting sedikit tentang pengertian apa itu virus, worm dan trojan, tapi kali ini saya akan berikan cara membuat virus dengan mudah menggunakan notepad, sekarang langsung saja kita mulai!!!
1. Buka notepad
2. Copy dan paste kode dibawah ini pada notepad

::__---Virus name Nama_Virus Created By Nama_kamu---__::@echo off::-------Spam C Drive--------::echo %random% > "C:\%random%

Comments

Virus
Dalam dunia komputer Virus atau worm sudah tidak asing lagi terdengar ditelinga kita,  Virus atau worm adalah suatu program komputer yang dapat menyebar pada komputer atau jaringan dengan cara membuat copy dari dirinya sendiri tanpa sepengetahuan dari pengguna komputer tersebut. Virus memang dapat menimbulkan efek yang berbahaya bagi suatu komputer, misalnya mulai dari menampilkan pesan

www.e-referrer.com