ad

Showing posts with label blogging. Show all posts
Showing posts with label blogging. Show all posts

Sunday, April 3, 2011

Embedded Comment Form (blogger in draft)

After so long in the complaint use, ultimately improving the Blogger Team is also complicated the problem in comment form, the new features this time we will no longer find that annoying blogger comments. Blogger now allows us to put comment form (Embedded Comment Form) under the posts.





To install the Embedded Comment Form to login first to http://draft.blogger.com then on the "Settings" select the tab "Comments" after it agreed to a "Placement Formula comments" do not forget to check the "Embedded below post" do not forgotten saved and see the results.




STOP! if you've succeeded, the following article does not need to be continued.

Please note before you try this feature sometimes does not directly work on the template already in the modification, for blogs that have not been on the modifications I think there is no problem. To overcome this problem blogger offers a somewhat less well, ie by deleting coding <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'> then put back the code to its original position . This method does not delete the actual post page elements, if still forced us to lose the previous setting.

To try the solution into the layout of the pages - Edit HML (do not forget to check the Expand Widget Templates).

Find the code below: (Sometimes a little different each template just so focused to the color code green)

<p class='comment-footer'>

        <b:if cond='data:post.allowComments'>

        <a expr:href='data:post.addCommentUrl'            
expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>

    </b:if>

</p>


Already? then delete all the above code and replace it with all the code below.

<p class='comment-footer'>

<b:if cond='data:post.embedCommentForm'>

<b:include data='post' name='comment-form'/>

<b:else/>

<b:if cond='data:post.allowComments'>

<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>

</b:if>

</b:if>

</p>


Do not forget to save, please try again, if it still does not work try to go back to the comment page and check back "Embedded below post".

Hopefully the above ways can help to solve your problems

How to Add AutoHiding Social Bookmarking (Sharing is Sexy/Caring) Widget To Your Blog

To add this widget to your blog, follow these instructions:

Step 1:
Log in to Blogger, go to Layout -> Edit HTML and mark the "Expand Widget Templates" box.

Step 2:
Now find (CTRL+F) this in the code:


</head>

And immediately BEFORE/ABOVE it, paste this code:

<!--HIDDEN-BOOKMARKS-STARTS-->
<style type='text/css'>
div.beauty-bookmarks {
height:54px;
background:url('http://i43.tinypic.com/2ueii3t.png') no-repeat left bottom;
position:relative;
width:540px;
}

div.beauty-bookmarks span.beauty-rightside {
width:17px;
height:54px;
background:url('http://i43.tinypic.com/2ueii3t.png') no-repeat right bottom;
position:absolute;
right:-17px;
}

div.beauty-bookmarks ul.socials {
margin:0 !important;
padding:0 !important;
position:absolute;
bottom:0;
left:10px;
}

div.beauty-bookmarks ul.socials li {
display:inline-block !important;
float:left !important;
list-style-type:none !important;
margin:0 !important;
height:29px !important;
width:48px !important;
cursor:pointer !important;
padding:0 !important;
}

div.beauty-bookmarks ul.socials a {
display:block !important;
width:48px !important;
height:29px !important;
font-size:0 !important;
color:transparent !important;
}

.beauty-furl, .beauty-furl:hover, .beauty-digg, .beauty-digg:hover, .beauty-reddit, .beauty-reddit:hover, .beauty-stumble, .beauty-stumble:hover, .beauty-delicious, .beauty-delicious:hover, .beauty-yahoo, .beauty-yahoo:hover, .beauty-blinklist, .beauty-blinklist:hover, .beauty-technorati, .beauty-technorati:hover, .beauty-facebook, .beauty-facebook:hover, .beauty-twitter, .beauty-twitter:hover, .beauty-myspace, .beauty-myspace:hover, .beauty-mixx, .beauty-mixx:hover, .beauty-script-style, .beauty-script-style:hover, .beauty-designfloat, .beauty-designfloat:hover, .beauty-syndicate, .beauty-syndicate:hover, .beauty-email, .beauty-email:hover {
background:url('http://i44.tinypic.com/1znbj83.png') no-repeat !important;
}

.beauty-furl {
background-position:-300px top !important;
}
.beauty-furl:hover {
background-position:-300px bottom !important;
}
.beauty-digg {
background-position:-500px top !important;
}
.beauty-digg:hover {
background-position:-500px bottom !important;
}
.beauty-reddit {
background-position:-100px top !important;
}
.beauty-reddit:hover {
background-position:-100px bottom !important;
}
.beauty-stumble {
background-position:-50px top !important;
}
.beauty-stumble:hover {
background-position:-50px bottom !important;
}
.beauty-delicious {
background-position:left top !important;
}
.beauty-delicious:hover {
background-position:left bottom !important;
}
.beauty-yahoo {
background-position:-650px top !important;
}
.beauty-yahoo:hover {
background-position:-650px bottom !important;
}
.beauty-blinklist {
background-position:-600px top !important;
}
.beauty-blinklist:hover {
background-position:-600px bottom !important;
}
.beauty-technorati {
background-position:-700px top !important;
}
.beauty-technorati:hover {
background-position:-700px bottom !important;
}
.beauty-myspace {
background-position:-200px top !important;
}
.beauty-myspace:hover {
background-position:-200px bottom !important;
}
.beauty-twitter {
background-position:-350px top !important;
}
.beauty-twitter:hover {
background-position:-350px bottom !important;
}
.beauty-facebook {
background-position:-450px top !important;
}
.beauty-facebook:hover {
background-position:-450px bottom !important;
}
.beauty-mixx {
background-position:-250px top !important;
}
.beauty-mixx:hover {
background-position:-250px bottom !important;
}
.beauty-script-style {
background-position:-400px top !important;
}
.beauty-script-style:hover {
background-position:-400px bottom !important;
}
.beauty-designfloat {
background-position:-550px top !important;
}
.beauty-designfloat:hover {
background-position:-550px bottom !important;
}
.beauty-syndicate {
background-position:-150px top !important;
}
.beauty-syndicate:hover {
background-position:-150px bottom !important;
}
.beauty-email {
background-position:-753px top !important;
}
.beauty-email:hover {
background-position:-753px bottom !important;
}

</style>
<!--HIDDEN-BOOKMARKS-STOPS-http://sulthanyusuf.blogspot.com/-->

Step 3:
Now find this in the code:

<data:post.body/>

And BELOW/AFTER that, paste this code:

<b:if cond='data:blog.pageType == "item"'>
<div class='beauty-bookmarks'>
<ul class='socials'>
<li class='beauty-delicious'><a expr:href='&quot;http://del.icio.us/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-digg'><a expr:href='&quot; http://digg.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-technorati'><a expr:href='&quot; http://technorati.com/faves?add=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-reddit'><a expr:href='&quot; http://www.reddit.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-stumble'><a expr:href='&quot; http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-designfloat'><a expr:href='&quot;http://www.designfloat.com/submit.php?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-facebook'><a expr:href='&quot; http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-twitter'><a expr:href='&quot; http://twitthis.com/twit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-furl'><a expr:href='&quot; http://www.furl.net/storeIt.jsp?u=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
<li class='beauty-syndicate'><a href='http://feeds.feedburner.com/blogspot/aCIu' title='Subscribe to RSS'/></li>
<li class='beauty-email'><a expr:href='&quot; mailto:?subject=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'/></li>
</ul>
<span class='beauty-rightside'/></div>
</b:if>

You may of course remove any button code, if you do not want to show it.

Now save the template.

That's it. Now just write some good posts worth bookmarking









How to Make emoticons in Blog Comments Column

Translate This Article To Indonesia

Install emoticons above comment box will make it easier for commentators to show expression and emotion. To sample Emoticons can be seen on my column's comments.


:)):)] ;)) ;;) :D ;) :p :(( :) :( 
:X =(( :-o :-/ :-* :| 8-} ~x( :-t 
b-( :-L  =))

Before installing the above Emoticon comment box, make sure the system was already using the latest Commenting from bloggers (see here), if my explanation still does not work too .. maybe it should be no change in coding XML Template.

To install the column Emoticon code comments, first .. Edit HTML view the first entry, then copy-paste the script below the orange and place the code above </ body> This code is usually located at the bottom of the HTML code.

<script src='http://sites.google.com/site/sulthanyusuf99/my-hosting/smiley.js'
type='text/javascript'/>

As for installing emoticon codes comment box above, remain on the Edit HTML page (do not forget to check the Expand Widget Templates). then look for the red color code below:

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='comment-form'/>
<b:else/>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>
</p>

now copy and paste the code below and place under the code <p class='comment-footer'> (see the previous script) kalo finished do not forget to save, and see the results :)

<b><img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/21.gif'/>
:))
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/100.gif'/>
:)]
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/71.gif'/>
;))
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/5.gif'/>
;;)
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/4.gif'/>
:D
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/3.gif'/>
;)
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/10.gif'/>
:p
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif'/>
:((
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif'/>
:)
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/2.gif'/>
:(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/8.gif'/>
:X
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/12.gif'/>
=((
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/13.gif'/>
:-o
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/7.gif'/>
:-/
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/11.gif'/>
:-*
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/22.gif'/>
:|
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/35.gif'/>
8-}
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif'/>
~x(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/104.gif'/>
:-t
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/66.gif'/>
b-(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/62.gif'/>
:-L
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/14.gif'/>
x(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/24.gif'/>
=))</b>



Hopefully this information is useful ! Thanks

.

Unlimited Free Visitor & Traffic

Read by Indonesian

Now, we will talk about the benefits that can be offered by this system to you. But before you proceed, you may wonder why you need "traffic"? Here's why.

1. "Traffic" is one of the indicators used google and other search engines to determine how important your blog or website.
2. "Traffic" is also an indicator that your blog is a blog that reliable, so you will be much easier to achieve first page positions on Google.
3. If you are posting program paid then you really, really need the "traffic" you need more than Pagerank. If you are in the Alexa 300,000, then you will be very easy to win the bid (bargaining) with advertisers.



Ok, will be very difficult for me to explain the advantages of this program, before I explain how to play. I am sure this way more easily than blogwalking every day.

Try to calculate how much time you spend each day for blogwalking? And how much can you invite every time you blogwalking? I also blogwalking, and maybe it will become a daily activity just to maintain your position .... alexa rank


In this system there are some actions you need to do .

* Go to the 1millionfreehits [dot] com page
* Quickly slide the pages of this web page down until you find a view like this (7 pictures thumbnails)



* Right-click on each image thumbnails and select the option to open in a new tab (open in a new tab). So open 7 new tabs
* On top of the window of each tab will have a blue bar with the inscription "AD CODE GENERATION .... please wait". Wait until appears the code numbers.






* Put the code number you find in the order of the columns below the thumbnail image.




* Fill the application form as a picture.




* Open the e-mail ( i suggest you to used the gmail)address that you enter on this form and find an e-mail from 1millionfreehits [dot] com.
* Then click the link circled in red
* You'll go into this congratulatory page
* Write down your ID and password then click ADMIN AREA MEMBER red circled
* You'll go to the login page is
* Enter your ID and password then click submit. You will be taken to the next page ....
* The red circled URL is your membership you need to note. Then the blue is a box that allows you to monitor your system development.


This view would you use to measure the growth of this system

Now you need to promote your membership link, like other services. Make a blog like you are now reading this , or create a new post about it (IMPORTANT!) . Fill these pages with articles such as this, but if you are lazy, just Copy Paste this article. how to promote the new posts could be read Unlimited free visitor & traffic.


Right now I will explain the benefits of this program compared to other programs.

1. This program is the English-language programs so that you can invite foreign bloggers to join.
2. This program requires participants click on the thumbnail to get the code, so it will result in the increase of "traffic" for you. Other program offers only baclink and there is no guarantee the new members click on your link. These programs not only offer a backlink, but also increase the "traffic" to help your Alexa Rank.


How much "traffic" is:

Notice that there are 6 thumbnails, every time there is a sign he would rank first, and if there is a new referral sign he will come down to rank 2, etc.. Let's just say we each take just 10 people (most likely more), then the number of visitors and backlinks you is :

In position 1: 10 links and visits
In position 2: 100 link and visit
In position 3: 1000 links and visits
In position 4: 10000 links and visits
In position 5: 100000 links and visits
In position 6: 1000000 link and visit

Can you imagine if the blog you visited 1,000,000 and 1,000,000 have backlinks (one-way backlinks!). How alexa rank, pagerank and link popularity you? Colossal! Nobody will refuse your bid. Many will ask advertisements on your blog, and that means income in large numbers. It's just that you do have to bother to do that is explained here.

Can you see the numbers above? Many articles circulated link says can get millions of links but they only play in Indonesia. Serious bloggers in Indonesia is not so much ....


3. Higher quality backlink. Why?

Have you noticed that the above you are requested to make a backlink from your main blog URL to your membership page. This is intended to help search engines to index your membership of this page. 1 links to the URL of your membership to this, you are likely to get the 1,000,000 one way backlink backlink.

Are you hurt someone else (stealing other people Pagerank). Of course not! Your backlink will be from the membership of the URL and not from the main blog URL that person.

What is the value of Backlinks from pages that membership? Although PRnya very small, but because the number of links that have only 7 seeds, then the PR value on offer is better than public relations obtained from a PR2 blog to have 150 links in 1 pages (Participant link exchange).


Did you know that the article backlink MLM is not much benefit you? ... Why?

* The article was written over and over again and you must post them on your main blog. Is not a good thing to have articles written repeatedly (plagiarism) in your blog.

* Your link installed in the article may not be indexed by Google. This means not necessarily a backlink, and very hard to increase "traffic" . (rarely a click)

* MLM backlink article do not necessarily match the theme of your blog, so can interfere with your keyword while still inhabiting your homepage.

* This system gives you the tools you can use to monitor developments, in contrast to articles that are not MLM backlink observed at all.


If you really need "traffic" and backlinks, then I think personally, this way can help you. Promote living well to at least 10 people. If you really want to do all these procedures, it would take about 1 hour, consisting of 10-minute registrations, 20-minute campaign blog, and 30 minutes to promote it to your friends. Let them decide whether they need "Traffic" and Backlink this. But if you read up on this point, so there's no doubt you "traffic" and good backlinks

Thus increasing "traffic" tips from me, hopefully useful!! Do not forget ya koment and his header ads if you feel this article useful, and please critique and advice if something is missing ..







Saturday, April 2, 2011

Make Your Blog Looks Beautifully With Cool Widgets

If the blog Widget have associated with the website or blog in question is a tool (useful tool) to maximize the beauty of your blog. The Widget itself is an element useful and easy to use either provided by blog service providers of you used or come from or third parties.

The use and installation of the cool widget has been greatly facilitated by third parties service providers, so you need * usually * only register or who do not even need to register at all, simply copy the provided scrift the element of your blog. Well, the gallery widgets of following options to enhance the look of your blog.

Note: I recommend not to put too much widgets as well as religion other than impressions * prohibit * install widgets exaggerated * too much * can lead to blog so impressed slums and burdensome load your blog page so do not close the possibility of PLP.



1. MyBlogLog's Recent Readers - Widget This one else in the world since its presence directly blog got an enthusiastic welcome as the new celebrity naek wrote again leaves. This widget shows the avatar of your blog visitors. And with the popularity of this one widget to the extent that management can convince MyBloglog yahooo (read: yahuu) to buy its shares. * its great ! * So, you need to get this widget is a yahoo account.

2. Mashable - This widget provides a kind of newsreel (headline news) in the element that gives bloggers news snippets / postings from social networking. The difference is the color choices to suit the layout of your blog.

3. Headline News - As Mashable widget, this widget also shows footage from the news headlines sites around the world.

4. Flickr Flash Photo Stream Badge - This widget displays photos from your flickr profile in sequence and with a touch of flash. Flickr is part of yahoo so to get this widget you need a yahoo account as in the MyBlogLog widget at the top.

5. Preview Anywhere - well-known enough snapshots to the user name blogger or wordpress widget even this specific recommendation in dashbord admin users. Its function is to see a preview link out to display a popup that is not too large when visitors mouse over the text or banner that "contains" links. Pros and cons are always there; some think this widget is useful for our honesty as indicating the blog owner, but some are labeled scapegoat lojalabo blamed.

6. Twitter Badge - If your daily life in many interesting things and so full of color with a myriad of activities and want others to know and show footage of short sentences such as a paragraph * * (140 characters) You're doing this activity, you're is where, you're with who you are, are, and the other is .... So this widget suitable for installation on your blog. Instead of making his own element blogger / wordpress * * manually write the text as a message to visitors of your blog that you're this and that, I suggest better use of this widget. This Widget will display the "tweet" your latest. And for users of existing WP plugin for twitter post directly from your blog, for example in the sidebar of this blog is just my babbling notes of what was I doing with these plugins.

7. Digg News - Widget was clear the last links that go to Digg is a great social bookmarking . More themes and colors to your set easy to fit your blog template.

8. FEEDJIT - most of good this widget widgets among others, suppose we again reply tired, lethargy, joints do not feel good, stiff muscles, body aches, chill ... then send to be wrote for it Feedjit * oooh yes * heuheu massage. Feedjit is a real-time traffic services to your blog. There are four options Feedjit widget that you can use, please visit the course Feedjit and see four widgets are available.

9. LineBuzz - inline comments in the widget for your blog. This widget is very useful for blogs that have frequencies above 900 MHz high in receiving comments, making it easier to comment if there is a prolonged discussion . Only love, visitors must be registered first to comment LineBuzz * also * make a nuisance

10. Flixn - If the company or your laptop is connected webcam, so this widget can be used to show the expression of "narcissistic" You live through your blog. So the blog visitors do not just read your post but could see "concert" in front of your monitor, like a webcam yahoo.

11. 3Jam - This widget allows blog visitors to interact with you by sending an SMS on your henpun without them knowing your mobile phone number.

12. Jaxtr - Like 3jam widget above, by using this jaxtr widget, blog visitors can contact your HP without them knowing your mobile phone number. * Your mobile phone number guaranteed confidentiality *

13. LinkedInABox - Displays your profile on LinkedIn. And this widget is perfect for personal blogs.

14. Box Widget - With this widget, your blog allows visitors to upload files to online storage via box.net box.net widget on your blog.

15. Price of gas - Displays the cost of fuel vehicles online (U.S. $), if its in Indonesia may be as Petrol price premium, and diesel and pertamax. "Very suitable" for your blog visitors a high mobility. * feels odd * but reply to your blog's address the issue of natural gas, fuel and similar then this widget is perfect, anyways do not need to register only provided copy and paste scrift Gas-Cost.Net.

16. iBegin Weather Widget - Displays the weather report for Canada and U.S. territories. As widgets Price of Gas in the widget is only suitable for blogs that are discussing the same problem.

17. Clocklink - This widget seems the most demanding and the use of bloggers who care about time management * clock as the name suggests, this widget displays the time or clock instructions on your blog.

18. Film Loops - Displays the conclusion last film you watch through your FilmLoops account.

19. Daily Painters - Widget is very convenient for your high-minded art for this widget displays the paintings of famous painters in the world.

20. WhoLinked - Show your blog visitors to sites that already link to your blog. not need to update because this WhoLinked regularly update their own web / blog to link your blog.

21. Criteo AutoRoll - This widget shows links to blogs that same course with your blog. Ideals ...? By ...! Heuheu.

22. Calendar - Different from wordpress widget that already has this in it, for the calendar widget blogger users are not yet available, therefore if you want to display the calendar widget is worth in one account.

23. Bitty Browser - View the web browser "mini" in the sidebar of your blog.

24. Leafletter - This is also still a problem as a mini, this widget to make a mini website and save it on your blog.

25. WikiSeek - Displays widget to search on Wikipedia.

26. FeedCount - Displays the number of visitors to your blog through the small banners and widgets are associated with your feedburner account.

27. Technorati Link Count - Displays the number of reactions to link your blog from one of the largest blog directory and most popular this century .

28. MyPageRank - This is another way to arrogance shows how great and helpful to your blog by displaying Google Rank or Google PageRank (PR). Google PR assessment was like when we used to be ranked SD 1 sampe 10, the difference between a good public relations according to google it bigger, aka 10, only one reply is not very large blog.

29. CheckPageRank - Other options for displaying your blog public relations, but the excess of this widget also displays the Alexa ranking.

30. Statistic Counter - For those of you who want to see how many visitors your day, then this widget is one that provides such facilities.

31. Web / Blog Counter - This widget comes from Histats.Com that allows you to track your visitors come from anywhere, through any door, and count the number of visitors to your blog everyday how, referrers from this blog anywhere, and if through search engines such as google, yahoo, msn what keywords to use. If you want to see the IP address of your blog visitors, this histats widget that I can recommend.

32. BlinkxIt - Widget for displaying sangad mantab small banner under each of your blog postings, as it was in BlikxIt banner click the out mini popup like a snapshot and a video display associated with your blog postings.

33. Skype button - like widget displays the online status of YM on your blog, this widget was almost the same just different status online / offline on your skype account is displayed.

34. RockYou Horoscope - I do not recommend this widget on blogger Muslims, because this form of prediction that was clearly forbidden by our religion-Sodara Sodara! Consequently, if you believe the 40-day forecast Your prayers are not accepted .

35. Bravenet Horoscope - Like the widget above, Bravenet also provides horoscope widget for your blog.

36. del.icio.us Tagometer - This widget displays how many users del.icio.us bookmark your blog.

37. del.icio.us Linkrolls - this widget displays your recent bookmarks from del.icio.us.

38. Timelines - Need to create a timeline to your blog? Then the widget is easy to use, only need to enter your blog RSS then enter width and height.

39. PollDaddy - PollDaddy gives you easy create an interactive poll or survey of the country with the theme you are very beautiful and enchanting without limit of time that should separate between the two of us, let heaven and earth to witness the sacred love you both sincere . (ha ha ha)

40. Vizu - another widget options to create a poll on your blog, this widget excess match any blog platform.

41. AnswerTips - Show answer from Answers.com for various terms contained in your blog *

42. AnswerBoxes - Still Answer.Com widget of this widget only allows your blog visitors to enter a term that is understood and received answers to all the troubled heart of Answer.Com.

43. Now Playing - If you want to share a playlist of music you are listening and want your visitors to listen to your blog too, now offers Signamp this widget, let signamp that do the trick mungin how it happened.

44. BuzzBoost - Displays headlines from RSS FeedBurner your blog on your own blog or your other blogs or blogs are also on your friends or maybe your brother's blog or she is also in this blog, them and him. * Do not insist ! (ha ha ha) *

45. LibraryThing - Show the last book you've read bookworm O!

46. Plaxo Address Book - Allow visitors who have been faithful to your trust to access their guest book directly from your blog.

47. AuctionAds - Widget that displays auctions from eBay, and providing the opportunity to get the percentage .By the way, if a note of your blog visitors buying the auction item.

48. aStore - similar to AuctionAds Almost above, except that this widget comes from Amazon. This widget lets you display the "simple shop" but if there is a purchase through your shop that you benefit from the Amazon. By the way, have amazon list yet? Kalo not Click Here to list and instantly create 'simple stalls ". (Heuheu).

49. Deal of the Day - Still of the Amazon is the most brand-new widget released amazon. What's interesting about this widget is a massive discount offered to visitors of your blog. And if there is a buy goods from these widgets would you get a tip from amazon, okay to buy roasted peanuts. Heuheu.

50. Plazes - This widget displays the position where you are, Well this widget map showing the location of where you are.

51. Stockalicious - Show your portfolio with this widget, and sharing with other bloggers. Let everyone know how much money you have to spend on blogging.

52. Yahoo! For Good - Widget to create a "charity box" and will be donated to their owners. * Yahoo * So word to those that altruistic, it is necessary widgets, let's say your blog stalls or shops are receiving care charity box. ^ _ ^

53. Giftspace - Friend or blogger friends will give gifts on your Birthday day but they did not know what gift to buy if you want. Well through this widget let them know what gifts you really want.

54. MixMap - From this widget you can view your MySpace profile visitors from a map.

55. Google Map Widget - Show search on google maps from your blog.

56. Google Video Search - Show the search form from the video selection on your blog.

57. This Day in History - This widget displays the footage that today there is anything in the history of the past.

58. Shoutbox - shoutbox function is to accommodate the short message or a friend of the blogger who was blogwalking. To shoutbox many options you can use them, Shoutmix, Cbox, or your reply and nationalist-oriented domestic product of love you can choose Oggix. And earlier this oggix 2008 version was launched this blog, if you want to switch services, or simply trying to blog oggix please list.

Thus among the web widgets can be used to beautify your blog. Select all that if useful and appropriate for your blog. Remember! Most widgets can impress your blog slums and create and lead visitors lojalabo lazy to come a second time.

If you want to add another widget that you find in this column, please add a comment. Thanks

Saturday, April 3, 2010

Meta Tags To Boost popularity of a site?

For the beginner blogger (like me who just a few months so bloggers, he he ...), usually not familiar with this meta tag, let alone almost any existing blog template does not include a meta tag to the HTML script. Whereas this meta tag helps search engines (search engines) to track (crawl) to our site, because the main function of the meta tag is to provide a kind of summary of a site to search engines so that search engines can be aware of the existence of a site simply by reading summarized (without having to read all of his data entry). And it is said, by adding this meta tag to boost the popularity of our site because search engines can easily index the site for us that (true or not, not yet know. Enunciated new bloggers, hehe ...).

There are three mandatory meta tag is in a site, namely:

* Robots, serves to inform search engines not to read certain pages on our site, such as the page exclusively for members only.
* Description (description), serves to inform search engines to track our site through this information without having to read the entire content.
* Keywords (keywords), serves to inform search engines to track our site through its keywords without having to read all of his data entry.


Now, how to make this meta tag? Here is an example of meta tags that you can copy:

<meta content='INDEX, FOLLOW;' name='robots' />
<meta content='Description site;' name='description' />
<meta content='Keywords Site;' name='keywords' />
<meta content='Your name;' name='author' />


Description:

* If the member does not want the content indexed FOLLOW then replace it with NOFOLLOW. And if you do not want your site indexed, replace it with content NOINDEX, NOFOLLOW, so that search engines will not be able to find / crept. But do not be afraid, the site you can still open if you or someone you know to write the URL.
* Description site filled with content, such as:
"This blog is a collection of writings about the world of literature, whether in the form of poetry, short stories and other articles about literature."
Description or description of this site should be complete and not necessarily the same as the title description of the web / blog, which is usually short.
* Keywords Site completed site in accordance with the description of this site, for example:
"Literature, short stories, humorous short stories, poetry, love poetry, literary articles."
Note the word repeated! That will allow search engines to search by keyword. So if people look for more specifics, such as funny stories, then search engine will immediately pointed to our site. But remember, do not repeat words more than 3 times, because it might be considered spam by search engines.
* Author is filled with the creator's site, so if the name is sought through the search engine will display all the sites made.

So how do I put the meta tag is?

* Login first to blogger you.
* From the dashboard, select Layout, select Edit HTML.
* Copy this meta tag script (after editing according to your site).
* Place under <head> (located on top script), or if you have a blog title runs on the tab page you can put it under the script for the shortcut icon (favicon).
* Save after adding the meta tag.

Friday, April 3, 2009

How to Make emoticons in Blog Comments Column

Install emoticons above comment box will make it easier for commentators to show expression and emotion. To sample Emoticons can be seen on my column's comments.


:)):)] ;)) ;;) :D ;) :p :(( :) :( 
:X =(( :-o :-/ :-* :| 8-} ~x( :-t 
b-( :-L  =))

Before installing the above Emoticon comment box, make sure the system was already using the latest Commenting from bloggers (see here), if my explanation still does not work too .. maybe it should be no change in coding XML Template.

To install the column Emoticon code comments, first .. Edit HTML view the first entry, then copy-paste the script below the orange and place the code above </ body> This code is usually located at the bottom of the HTML code.

<script src='http://sites.google.com/site/sulthanyusuf99/my-hosting/smiley.js'
type='text/javascript'/>

As for installing emoticon codes comment box above, remain on the Edit HTML page (do not forget to check the Expand Widget Templates). then look for the red color code below:

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:include data='post' name='comment-form'/>
<b:else/>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>
</p>

now copy and paste the code below and place under the code <p class='comment-footer'> (see the previous script) kalo finished do not forget to save, and see the results :)

<b><img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/21.gif'/>
:))
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/100.gif'/>
:)]
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/71.gif'/>
;))
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/5.gif'/>
;;)
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/4.gif'/>
:D
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/3.gif'/>
;)
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/10.gif'/>
:p
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif'/>
:((
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif'/>
:)
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/2.gif'/>
:(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/8.gif'/>
:X
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/12.gif'/>
=((
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/13.gif'/>
:-o
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/7.gif'/>
:-/
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/11.gif'/>
:-*
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/22.gif'/>
:|
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/35.gif'/>
8-}
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif'/>
~x(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/104.gif'/>
:-t
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/66.gif'/>
b-(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/62.gif'/>
:-L
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/14.gif'/>
x(
<img border='0' src='http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/24.gif'/>
=))</b>



Hopefully this information is useful ! Thanks

ads

Advertisement

 
Design by Wordpress Theme | Bloggerized by Free Blogger Templates | JCPenney Coupons