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
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
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.
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
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
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
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
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
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
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.
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
- Login to Blogger
- From the Dashboard go to Design > Edit HTML
- Back up your template by downloading it to your computer
- Check the Expand Widget Templates checkbox on the top righthand side
- Use CTRL + F by entering the following into the search box
<dd class='comment-body'>
- 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/> - 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. - Your code will now look like this:
<div expr:id='data:widget.instanceId + "_comments-block-wrapper"'>
<dl expr:class='data:post.avatarIndentClass' id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt expr:class='"comment-author " + 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> - Now using CTRL + F again find this line ]]></b:skin>
- Paste the following immediately before ]]></b:skin>
.comment-body-author {
background: #f5deb3;
border: 2px solid #de7008;
padding: 5px;
} - Save your template changes
- 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.
- Login to Blogger
- From the Dashboard go to Design > Edit HTML
- Back up your template by downloading it to your computer
- Check the Expand Widget Templates checkbox on the top righthand side
- 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> - 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> - Use CTRL + F to find ]]></b:skin> that closes the CSS styling section
- Paste the following code immediately above ]]></b:skin>
p.comment-body-author {
background: #eeeecc;
border: 2px solid #335577;
padding: 5px;
color:#558866;
} - Save your template
- 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
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
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
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.
- Log in to Blogger
- Go to Posting > New Post or Edit Post and either create a new article or edit an existing one.
- 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
- Switch to the Edit HTML mode rather than compose mode so you can see the code you are inserting into your post
- 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 - 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.
- The href attribute and closing </a> element is the same structure you use for other links in your blog
- 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.
- 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 - Note the use of the name attribute at the beginning and the </a> element at the end
- 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 - 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?
- 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
- 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 - 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>
- 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 - 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
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
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
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.
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:
- 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
- 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 - In Blogger go to Design > Page Elements
- Select Add Gadget from the sidebar or footer depending on where you want to place your Flickr slideshow
- Choose Slideshow from widgets in the Basics list
- Choose a title for your slideshow or leave blank
- Under Source use the drop down menu to select Flickr
- Under Option select User
- 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. - Click on Save and then View Blog to see your new Flickr slideshow in action on your Blogger blog
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.
- Log on to Flickr
- Upload your photos and create sets to organize your photos if desired
- Go to view your sets in Flickr and select the set you wish to use for your Blogger slideshow
- In your browser window you will see a URL address similar to the following:
http://www.flickr.com/photos/27647187@N07/sets/72157624508265319/
- 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
- Your photostream - designated by something similar to 27647187@N07
- In a different browser window log on to Blogger if not already logged in
- Go to Design > Page Elements
- Select Add Gadget from the sidebar or footer depending on where you want to place your Flickr slideshow
- Choose Slideshow from the list of Basics Widgets
- Click on the blue plus sign to the right of the Slideshow gadget to activate and configure your Blogger Flickr Slideshow
- Choose a title for your slideshow or leave blank
- 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)
- 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
- Substitute your photostream id (this will unique to your Flickr account)
- Substitute the id of the set of images you wish to display
- Leave the speed of the slideshow at medium unless you specifically need it to be faster or slower
- Click on Save
- 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
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
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
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
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
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
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...
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
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
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
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
Keygen generator asissten 1.1 | Free downloads software and games
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,
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
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
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



