Social Icons

Showing posts with label About Blog. Show all posts
Showing posts with label About Blog. Show all posts

Sunday, December 9, 2012

How to Fix Error URL is Unreachable on Facebook Comments.



How to Fix Error URL is Unreachable on Facebook Comments.
For the bloggers are very popular these days is the Facebook Comments and menggukan default comment provided by the "wp". but sometimes facebook comment does not work or there is always the words "Warning: URL is unreachable".

For those of you may feel confused about how to fix the error when all of the code has been correctly put in "single post".

When you find the error in the blog comment you do not get confused, because it can be easily repaired. The trick as below.

1. Please open http://developers.facebook.com.
2. Look over there writing APPS, click and select which applications are the same as the "url" blog facebook comment was entered.
3. After that then you click "edit settings".
4. Choose a domain that error was in "App Domain". Write without www and http and click on the website below with your full URL like the example image above.
5 Then click "apply settings" and wait a few minutes facebook comment you will run without any problems.

Good luck.

Saturday, August 18, 2012

How to make Scroll to the Widget


How to make Scroll to the Widget.

Blog Widget so that you do not take place, you can make a scroll on the Widget. Here's how to make it:

1. Login to Blogger.
2. Click on Edit HTML design →
3. Click Download Full Template
4. Please Save the template first, in order to reduce the risk if something goes wrong when editting the template, we still have the backup to restore it as before.
5. Check the boxes next to Expand Widget Templates.
6. Then find the code like the following:


<b:widget id='HTML6' locked='false' title='Cari di Blog ini' type='HTML'/> 
<b:widget id='Label1' locked='false' title='Label' type='Label'/>
<b:widget id='BlogArchive2' locked='false' title='Arsip' type='BlogArchive'/> 
<b:widget id='HTML4' locked='false' title=' 5 most comments ' type='HTML'/> 
<b:widget id='HTML7' locked='false' title='5 most comments' type='HTML'/>


7. Search Widget code that will give my friend Scroll Archive for example. If the widget title is Archives, then the code as follows:

     <b:widget id='BlogArchive2' locked='false' title='Arsip' type='BlogArchive'/>

Code title is the title of the widget. If no code is given the title then title = ''
You must take with the code id = 'BlogArchive2'
 Notice the part that is the id of BlogArchive2 Widget Blog Archive.

8. then find the code]]> </ b: skin> Copy and Paste the following code on it


#BlogArchive2 .widget-content{ 
height:200px; 
width:auto; 
overflow:auto; 
}


9. Replace the BlogArchive2 the id of the widget that will give Scroll.
10. Then save the TEMPLATE
       Good luck.

How to redirect the old domain to new domain


How to redirect the old domain to new domain.

An easy way for you is how to redirect the old domain to new domain. Probably many reasons why want to replace the old domain to new domain but old domain already popular new domain while still not a lot of people who knew him so that is still very little visitor.
The best way to get visitors from the old domain to new domain, namely by way of Redirect. Redirect well what it is like turn your old domain example is my new domain dot com and dot your i net. So if someone is open .....com I'll switch to .......net, as for instance.
How do I? quite easy and simple way is to use .htaccess file. You have to make first .htaccess file and fill it with this code.

# For security reasons, Option followsymlinks cannot be overridden. #Options +FollowSymLinks Options +SymLinksIfOwnerMatch RewriteEngine on RewriteRule (.*) http://www..........net/$1 [R=301,L]

Then save and upload to the directory where the file where you put your domain. Once again put in a folder on the old domain is not new.
This method is very easy to bring new visitors to a domain that you have this way will redirect all the permalink from old domain to new domain, so you do not have to worry losing visitors from searching engines.
Good luck.

Tuesday, August 14, 2012

How to create a related article on the blog


How to create a related article on the blog.
We know that every reader of the article is usually read from beginning to end, until at last he saw another article under our articles. Therefore, we just talk about how to create a related article on the blog.
1. Login to blogger
2. Click the Layout
3. Select Edit HTM, check Expand Widget Templates
4. Then, find the code]]> </ b: skin>
5. place the following code above the code]]> </ b: skin>


.rbbox{border: 1px solid rgb(192, 192, 192);padding: 5px;
background-color: #f0f0f0;-moz-border-radius:5px; margin:5px;}
.rbbox:hover{background-color: rgb(255, 255, 255);}


6. Then find the code or the klo my friend was wearing read more there will be two codes <data:post.body/>
7. Add the following code just below the first <data:post.body/>


<b:if cond='data:blog.pageType == &quot;item&quot;'>
<br/>
<br/>
<H2>Artikel Terkait:</H2>
<div class='rbbox'>
<div style='margin:0; padding:10px;height:200px;overflow:auto;border:1px solid #ccc;'>
<div id='albri'/>
<script type='text/javascript'>
var homeUrl3 = &quot;<data:blog.homepageUrl/>&quot;;
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 10;
maxNumberOfPostsPerLabel = 10;
maxNumberOfLabels = 3;
function listEntries10(json) {
var ul = document.createElement(&#39;ul&#39;);
var maxPosts = (json.feed.entry.length &lt;= maxNumberOfPostsPerLabel) ?
json.feed.entry.length : maxNumberOfPostsPerLabel;
for (var i = 0; i &lt; maxPosts; i++) {
var entry = json.feed.entry[i];
var alturl;
for (var k = 0; k &lt; entry.link.length; k++) {
if (entry.link[k].rel == &#39;alternate&#39;) {
alturl = entry.link[k].href;
break;
}
}
var li = document.createElement(&#39;li&#39;);
var a = document.createElement(&#39;a&#39;);
a.href = alturl;
if(a.href!=location.href) {
var txt = document.createTextNode(entry.title.$t);
a.appendChild(txt);
li.appendChild(a);
ul.appendChild(li);
}
}
for (var l = 0; l &lt; json.feed.link.length; l++) {
if (json.feed.link[l].rel == &#39;alternate&#39;) {
var raw = json.feed.link[l].href;
var label = raw.substr(homeUrl3.length+13);
var k;
for (k=0; k&lt;20; k++) label = label.replace(&quot;%20&quot;, &quot; &quot;);
var txt = document.createTextNode(label);
var h = document.createElement(&#39;b&#39;);
h.appendChild(txt);
var div1 = document.createElement(&#39;div&#39;);
div1.appendChild(h);
div1.appendChild(ul);
document.getElementById(&#39;albri&#39;).appendChild(div1);
}
}
}
function search10(query, label) {
var script = document.createElement(&#39;script&#39;);
script.setAttribute(&#39;src&#39;, query + &#39;feeds/posts/default/-/&#39;
+ label +
&#39;?alt=json-in-script&amp;callback=listEntries10&#39;);
script.setAttribute(&#39;type&#39;, &#39;text/javascript&#39;);
document.documentElement.firstChild.appendChild(script);
}
var labelArray = new Array();
var numLabel = 0;
<b:loop values='data:posts' var='post'>
<b:loop values='data:post.labels' var='label'>
textLabel = &quot;<data:label.name/>&quot;;
var test = 0;
for (var i = 0; i &lt; labelArray.length; i++)
if (labelArray[i] == textLabel) test = 1;
if (test == 0) {
labelArray.push(textLabel);
var maxLabels = (labelArray.length &lt;= maxNumberOfLabels) ?
labelArray.length : maxNumberOfLabels;
if (numLabel &lt; maxLabels) {
search10(homeUrl3, textLabel);
numLabel++;
}
}
</b:loop>
</b:loop>
</script>
</div>
<script type="text/javascript">RelPost();</script>
</div>
</b:if>


8. Save Template.

Good luck and hopefully succeed.
 ...


Monday, August 13, 2012

How to make Shoutmix Hidden in Blog



How to make Shoutmix Hidden in Blog.
How to make guestbook shoutmix hidden or concealed.
1. Log into your Blogger account, select the Layout; then Page Elements;
2. Click the "Add a Gadget", then select "HTML / JavaScript",
3. Copy-paste the code below:












<style type="text/css">
#gb{
position:fixed;
top:50px;
z-index:+1000;
}
* html #gb{position:relative;}
.gbtab{
height:100px;
width:30px;
float:left;
cursor:pointer;
background:url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgFPnLyPRW8p62TWzxlpyWVJWfBkLkIncwLmAZmXAKuS9E1cRV3U4hx-cVwkE5kL2EB0RJsxH0VlxyLebE7iQHw9XkvpRkGfCNdKiiOdgTl77l2rMcZtWnBxjwW8HG-Wk7UrOcgNsKMQy7X/') no-repeat;
}
.gbcontent{
float:left;
border:2px solid #A5BD51;
background:#F5F5F5;
padding:10px;
}
</style>
<script type="text/javascript">
function showHideGB(){
var gb = document.getElementById("gb");
var w = gb.offsetWidth;
gb.opened ? moveGB(0, 30-w) : moveGB(20-w, 0);
gb.opened = !gb.opened;
}
function moveGB(x0, xf){
var gb = document.getElementById("gb");
var dx = Math.abs(x0-xf) > 10 ? 5 : 1;
var dir = xf>x0 ? 1 : -1;
var x = x0 + dx * dir;
gb.style.right = x.toString() + "px";
if(x0!=xf){setTimeout("moveGB("+x+", "+xf+")", 10);}
}
</script>
<div id="gb">
<div class="gbtab" onclick="showHideGB()"> </div>
<div class="gbcontent">
<!-- Replace the code in your guestbook -->
<br/>
<br/>
<a href="Replace with your url">.
</a>
<div style="text-align:right">
<a href="javascript:showHideGB()">
[close]
</a>
</div>
</div>
</div>
<script type="text/javascript">
var gb = document.getElementById("gb");
gb.style.right = (30-gb.offsetWidth).toString() + "px";
</script></div></div>


* In the above code, locate the code <! - Replace the code in your guestbook -> and replace that code with code guest book you get from the site,
* You can also set the position. Change wrote his top attribute values​​. If you want more up slightly, so change the 30px or 20px, it's up to you.


How to install the Gadget Google Pagerank in the Bog


How to install the Gadget Google Pagerank in the Bog.
Many sites pagerank widget providers as an example here but I will make a widget in prchecker.info because I think its pretty easy process. Before taking the code you can also preview your google pagerank. Do I enter the url and then click Check PR.


Please enter the www.prchecker.info

Click one of the pagerank display the desired image.
Then enter Anti bot code on the left side> click Generate Now.
After you copy the code above:
Log in to your Blogger> Layout> Add a Gadget> HTML / javascript> make sure that the code can be> Save> save the settings.
Finally, google pagerank and alexa widget was installed in your blog. It's time to install code alexa rank is difficult enough, not as pairs of pagerank. If it fails try to continue.

Within 5 days usually appears the figure, usually a range of 20 million, and will continue to decline as the development of our blog.

Sunday, August 12, 2012

How to create a Twitter Follower in the Blog Box


How to create a Twitter Follower in the Blog Box.
Now I want to discuss about how to create and install the Twitter Follower Box on the blog. Looks like box later as Facebook, can you see the results later.

Well let us practice it.

1. Login to Blogger
2. Click the Dashboard> Design> Add a Gadget
3. Select widget HTML / JavaScript
4. Enter this code





<!-- Twitter Follower Box -->
<script type='text/javascript'>
function fanbox_init(screen_name){document.getElementById('twitterfanbox').innerHTML='\<iframe name=\"fbfanIFrame_0\" frameborder=\"0\" allowtransparency=\"true\" src=\"http://s.moopz.com/connect.html?user='+screen_name+'\" class=\"FB_SERVER_IFRAME\" scrolling=\"no\" style=\"width: 295px; height: 250px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; \"\>\<\/iframe\>';}
</script>
<div id="twitterfanbox"></div><script
type="text/javascript">fanbox_init("@nurahwan1");</script
type="text><div
style="font-size:10px;margin-top:-8px;"><a
href="http://lalawanita.blogspot.com"></a></div>
<!-- End Twitter Follower Box -->


5. Replace @nurahwan1  with your username on Twitter. Replace http://lalawanita.blogspot.com with your url.
6. To resize, adjust the width and height of his
7. Save and Finish.


Good luck and hopefully succeed.

Javascript code to the Blog can not copy paste


Javascript code to the Blog can not copy paste.
We have a lot of people who create a blog to easily retrieve the files easily copy files to others. Therefore, one way is to disable right-click the mouse in order not to imitate others. This means both that article and there are gadgets that can not be aimed at either right-click to open link in new tab or who intend to copy the entire contents of the article.

If you do not want to copy the article and picture in others. There is one effective way is to add the javascript code.
Please use the javascript code below.
Find the code </ head> then enter the code below under it.


   <!-- Disable Copy Function-->
    <script language='JavaScript1.2'>
    function disableselect(e){
    return false}
    function reEnable(){
    return true}
    document.onselectstart=new Function (&quot;return false&quot;)
    if (window.sidebar){
    document.onmousedown=disableselect
    document.onclick=reEnable}
    </script>


Good luck and hopefully succeed.

How To Register Submit Blog to Google


How To Register Submit Blog to Google.
Each of us makes a blog is a must to register your blog to search engines. No exception for blogs like wordpress or multiply.
Let us learn together to figure out how to register or submit blog to google search engine. And verification as well as adding a blog in google webmaster tools. The goal is that easy to manage as submit sitemap etc.
Immediately, a way to register your blog on Google.

Please copy the url link below and paste it in the address bar.

https://www.google.com/webmasters/tools/submit-url?continue=/addurl

Will appear in the image below, enter the full url of your blog, then enter the captcha code are there, click Send Request. Completed.
Hopefully this way is useful to you and congratulations to try it.

How To Submit Blog Sitemap to Indexed in the Bing and Yahoo.



How To Submit Blog Sitemap to Indexed in the Bing and Yahoo.

Map of a site or a blog that contains information about the url that is on your site or blog. Sitemap url is in addition contain also contain metadata, metadata here in the form of information about the last time your site or blog is updated, how often updates are done, when it was on your site or blog updates.

Sitemap function itself is to inform the url of a site that can be crawled by search engine robots. Because in the sitemap url consists only of course, the search engine robot would be easy to index the entire url in the form of articles, categories, archives etc. that exist on your site or blog. But if you do not use a sitemap, the search engine robot will explore your blog site or per page, can you imagine if you already have a lot of articles that will explore the difficult and hard to indexed.

Submit sitemap to Yahoo previously done using Yahoo Site Explorer. After joining Yahoo Bing Bing Webmaster Tools and use the partnership contract. So since then bloggers are asked to submit sitemaps to index Bing to get Yahoo and Bing.

By joining this Yahoo and Bing, our job becomes easier, because the blog and submit your sitemap enough in Webmaster Tool Bing, Bing will automatically be put on the two search engines, namely Bing and yahoo, as well as MSN.

We directly address how to keep our blog can be indexed by Yahoo and Bing.

Once the blog is registered and verified by Bing webmaster tools, we only send our blog sitemap to Bing webmaster tools with how to ping it. To more easily please copy the link below.

http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Flalawanita.blogspot.com%2Fatom.xml%3Fredirect%3Dfalse%26start-index%3D1%26max-results%3D500

Please replace the red code with your blog name. Then enter into the address bar, hold enter, if it says "Thanks for submitting your sitemap" means sitemap submit was successful blog.

Note;
Ima wait for the day since the sitemap submit your blog to check if your post already indexed pages Bing,
If it has not been indexed as well, remove from Bing webmaster blog, then submit your blog again. Then ping again using the url above.


How to create contact us at Blog and Wordpress.


How to create contact us at Blog and Wordpress.
This time I will give a tutorial on how to create a Contact Us blogspot or wordpress with the help of the manufacturer websites html code contact form. I think all bloggers would give us the contact menu on their blog, there may be some of the difficulties in making the contact us menu.
Step-by-step how to create a Contact Us:
1. Prepare your email for the registration process.
2. Visit www.123contactform.com there and do the registration, you select the gartis only.
3. After registering check your email for verification of enrollment.
4. Creat your account login and select New Form Contact Form.
5. You design the form (free as you like)
When you are finished click Continue.

No. 1 is the email message when there is contact you via this form. So you should check next to the email. You can also add the email will receive a message by clicking on add email notification page.

No. 2 is a message that will appear after it's sent. You can change it according to your wishes, for example, "Thank you for contacting us" etc..
If you have to click continue on the right above.
Now you just select the form that you will put where and some of the options code.

Please choose from as you want and you will be in suguhi code. The next step copy and paste the code in your page contact Us. You are only given for wordpress formnya code.
Contact Us How to create this kind of similar to Emailme Form. Contact Us how to make the advantages of this is when the redirect will remain on the blog page, there are options to change the layout or theme behind. Up here and hopefully the article contact us how to make this worthwhile for those of you who need it.

How to make a blogger posting under the related post


How to make a blogger posting under the related post.
1. Login using the Username and Password you google gmail account at blogger.com or
2. From the dashboard page / dashboard, select it and click the Design or Design.
3. Click on Edit HTML and check Expand Widget Templates (you should first download your template as a backup)
4. Find this code <data:post.body/>
5. Put the following script code in the above code (see code number 4):

<b:if cond='data:blog.pageType == "item"'>
<div class='similiar'>
<div class='widget-content'>
<h3>Related Post</h3>
<div id='data2007'/><br/><br/>
<script type='text/javascript'>
var homeUrl3 = &quot;<data:blog.homepageUrl/>&quot;;
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 10;
maxNumberOfPostsPerLabel = 100;
maxNumberOfLabels = 3;
function listEntries10(json) {
var ul = document.createElement(&#39;ul&#39;);
var maxPosts = (json.feed.entry.length &lt;= maxNumberOfPostsPerLabel) ?
json.feed.entry.length : maxNumberOfPostsPerLabel;
for (var i = 0; i &lt; maxPosts; i++) {
var entry = json.feed.entry[i];
var alturl;
for (var k = 0; k &lt; entry.link.length; k++) {
if (entry.link[k].rel == &#39;alternate&#39;) {
alturl = entry.link[k].href;
break;
}
}
var li = document.createElement(&#39;li&#39;);
var a = document.createElement(&#39;a&#39;);
a.href = alturl;
if(a.href!=location.href) {
var txt = document.createTextNode(entry.title.$t);
a.appendChild(txt);
li.appendChild(a);
ul.appendChild(li);
}
}
for (var l = 0; l &lt; json.feed.link.length; l++) {
if (json.feed.link[l].rel == &#39;alternate&#39;) {
var raw = json.feed.link[l].href;
var label = raw.substr(homeUrl3.length+13);
var k;
for (k=0; k&lt;20; k++) label = label.replace(&quot;%20&quot;, &quot; &quot;);
var txt = document.createTextNode(label);
var h = document.createElement(&#39;b&#39;);
h.appendChild(txt);
var div1 = document.createElement(&#39;div&#39;);
div1.appendChild(h);
div1.appendChild(ul);
document.getElementById(&#39;data2007&#39;).appendChild(div1);
}
}
}
function search10(query, label) {
var script = document.createElement(&#39;script&#39;);
script.setAttribute(&#39;src&#39;, query + &#39;feeds/posts/default/-/&#39;
+ label +
&#39;?alt=json-in-script&amp;callback=listEntries10&#39;);
script.setAttribute(&#39;type&#39;, &#39;text/javascript&#39;);
document.documentElement.firstChild.appendChild(script);
}
var labelArray = new Array();
var numLabel = 0;
<b:loop values='data:posts' var='post'>
<b:loop values='data:post.labels' var='label'>
textLabel = &quot;<data:label.name/>&quot;;
var test = 0;
for (var i = 0; i &lt; labelArray.length; i++)
if (labelArray[i] == textLabel) test = 1;
if (test == 0) {
labelArray.push(textLabel);
var maxLabels = (labelArray.length &lt;= maxNumberOfLabels) ?
labelArray.length : maxNumberOfLabels;
if (numLabel &lt; maxLabels) {
search10(homeUrl3, textLabel);
numLabel++;
}
}
</b:loop>
</b:loop>
</script>
</div>
</div>
</b:if>

6. Save Template and see the results. May be useful for you.




How to Install Alexa Rank Widget in Blog


How to Install Alexa Rank Widget in Blog.

I think Alexa Rank in the blog is very important to us, because we can know how your blog ranking. Although it has no information about it, for those who do not understand let us learn together. Immediately, we'll discuss it.





How to install the Alexa widget ..

1. Please visit the site directly at www.alexa.com
2. Then Select Site Tools menu in the upper part of the dashboard.
3. Then select the bottom of the Alexa Site Widgets.
4. Kemudain Choose The Alexa Site Stats Button and enter your blog URL address.
5. Then insert script code into your blog.
6. Log into your blog account.
7. Login to blogger
    Choose a Plan
    added option widget / gedget
    After that, choose the HTML / Javascript
    Paste the code you copied from Alexa
    Finish and save.

I think it's just an explanation of How to Install Alexa Rank Widget Post Widget in Blog or Alexa. Hopefully you will get to understand this.

Tuesday, June 19, 2012

How to blog indexed by Google fast


How to blog indexed by Google fast.

Powerful Ways To Blog Indexed By Google Fast - In order to post quickly in Index - Until recently I was using google insight. Well after posting my usual immediately submit to several social bookmarking hope that eventually a quick blog post on the index. Fit the title I'll give you some quick ways to blog index.

1. Post the original article.
Keep posting the original article. search engines like if we are always updating the original article and the article did not copy anyone else.

2. Build a internal link to your page.
At least every article that you post on the internal link you to be great for blogs and blog to increase the number of pageviews.

3. You can commet in the famous blog.
Please comment on the blog that has a good reputation and crowded visitors.

4. Create, send, and Ping your XML Sitemap.
You can create and submit sitemap to your blog for free in http://www.google.com/webmasters/ a way to create an account with Google Webmaster Central, add your site, and submit your XML sitemap.

5. Install Google Analytics.
Add Google Analytics to your blog. Do not forget to verify your blog.

6. Do a Ping Seta Submit to Social Bookmarking
Usually after posting a new article, I will ping blog and submit articles to social bookmarking book. better in the dofollow social bookmarking and famous ..
Do not forget also that you submit your blog to other search engines such as Yahoo, Ask, MSN, etc..

Thus a little review of mine, hopefully useful to you.

Monday, May 7, 2012

How to Improve Blogger PageRank.

How to Improve Blogger PageRank.

It does have some friends who have argued to me that PageRank is not able or do not affect the increased traffic on our blog blog.
I think that PageRank still has its influence on the increase in the number of visitors or visitors to the blog. For that would benefit friends also noticed an increase google pagerank of a real quick way to improve PageRank is Google's Blogger.
Actually how to improve and increase the Google PageRank and our Blog? That is the way a moment to make writing a quality article. Because for me the quality and original content are very evident and I believe if my writing is the result of the work itself pimikiran, google search engine will understand and detect SEO Tips blog article that I created. Simply how to increase the value of PageRank Blog / website.

1. Write an article relevant to the content or according to the theme of your blog title. Never write more articles that your blog is hot but not related to the topic. For instance the theme of your blog about the world of health, but even then write a love story and gossip artist.

2. Often you are exchanging links with other bloggers. After doing a link exchange with other bloggers, the value of page rank blog Blog this info page rank up faster. It should be noted, do not be picky about the blog that will be invited to exchange links. Due to the new blog if it turns out that even with good care and have a PR blog is up, it will be good for your blog.

3. Do not often change the blog template. Because according to the experience when we are dressing the same theme while doing a google robot confusing pekerjaannya.itu can hurt you if it happened on your blog and will have a negative impact on your blog seo optimization.

4. Perform periodic updates. By constantly updating the article on your blog, it automatically will also provide a plus for your blog because it is not considered a farm blog is only to be bred as a dummy blog and google robot will be happy if you always keep the info and news updates of your blog to facilitate increased pagerank blogger or website.

4. Commenting on Dofollow Blog. Because commenting on dofollow blogs are very good to increase blog traffic and reinforce the value of your PageRank. But if you want to get a quality backlink. berkomentarlah on DoFollow blogs are much more if your blog already has good pagerank and SERP positioned in search engines.

I think that is enough for me to write about it, thanks ...

Thursday, March 8, 2012

How to install Google Translate in the Blog



How to install Google Translate in the Blog.
Google Translator is a tool created by Google to facilitate visitors from other countries to read and understand the contents of your blog content. You just copy and paste the code below into your blog :











<style>
.google_translate img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
border:0;
}
.google_translate:hover img {
filter:alpha(opacity=30);
-moz-opacity: 0.30;
opacity: 0.30;
border:0;
}
.google_translatextra:hover img {
filter:alpha(opacity=0.30);
-moz-opacity: 0.30;
opacity: 0.30;
border:0;
}
</style>
<div>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="English" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cen&hl=en'); return false;"><img alt="English" border="0" align="absbottom" title="English" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP_YXGTvy3c23jOGU0dJ-YC6urxM4sO5L7bB25Fq-aH0GDpzvovNfKY68ZHjRxO6yxepxn0JnORaB_EeXN5mhe0FQHGdSdVSoSNAgRrMbaTfIXzDVGgpy3xBOzEQ0fU1e-29MdJmbrcQQ/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="French" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cfr&hl=en'); return false;"><img alt="French" border="0" align="absbottom" title="French" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiWxPBEqnsg0fbjh-0iNgQ40ElPJ4q7X8GRLmKDPqbF-RIncMsao2nOK3SNKgCSvvxABdrGL5Bg0kaw_FsnDh_zW9oc68ANzMTSuiwhf6lUXTjFbsAg4syBZVw9nRMyRB8F812j5Inrr7U/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="German" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cde&hl=en'); return false;"><img alt="German" border="0" align="absbottom" title="German" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjF3ag88s-V7PjPANRKeAce-G23ve7EcOJrhftt9d_vLt2ow4u5LwSCfmlATKLQrYoNPrwc5tQjyDAGpKLYe_BoKgp53Exc8BpRvcB1zywC4Cvk3MVHjTMLcdrK_kwOL3D2KHwEVPp0QUmy/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Spain" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7ces&hl=en'); return false;"><img alt="Spain" border="0" align="absbottom" title="Spain" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHm2Zvf8ddCy_PntQeQAgnVWdhWr8yzTd0v6IgOf9mTQUWmtHuVGvqrwMEzZAambR3IBJtzeIlU2tlFq7C-1clUURFwlG6lY4PPUf58uSIraZQP6uNhWxwuLtx6tsYW3cUzuZgIPQD9_7c/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Italian" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cit&hl=en'); return false;"><img alt="Italian" border="0" align="absbottom" title="Italian" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNkr0PFIrbKMQeTC_PJMWafhd_PmUAMMGNfBIt4czgHe_v0QJrHOTeMX3coakzAJuz_Z2sgDvg5C3wgmUNTl6CakD8suyMt2w3MHohhTgbbcSujA2NhENmjn_fzY12Jn2Eo_JCpg55YXY/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Dutch" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cnl&hl=en'); return false;"><img alt="Dutch" border="0" align="absbottom" title="Dutch" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoRqWwqDce94XxfW-OrbYM6vKCpgSPn7_WToCJZ-FQdQKX_opMGTEFsqdqiQzHvkyvIyE-CMmbhVhjg_HE13EnGp20MOrcxvhW-_3Wpf4d9o_KShdEu7XcnJUXez6zoVnFX3o552rfcVo/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<br /><br />
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Russian" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cru&hl=en'); return false;"><img alt="Russian" border="0" align="absbottom" title="Russian" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9cdua5T3bN08DampvmhiVVKQoqf1EJJ9QoymPyoXbWInVirur5aOxHoQ3ijKkslKJxcltCAG2D7-EpiNjaXU6WZgIpWeyXT51aydJqUd_Zr5MYAhg6ejr4KsfBw4AfeDGJeiljR7HGqQ/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Portuguese" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cpt&hl=en'); return false;"><img alt="Portuguese" border="0" align="absbottom" title="Portuguese" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVAMN5JGRJTZNIv36afgNQIOlkhQS68Pn_kRQnnCmefZzyASi0zTkpuF1cfZdpJZeBaC1pvNKkr-yo6iJYsgnnf8XkkL6uRHTgatAQhnnt-aMyGB3sgFW4cYth51BP5PvAyr1cvVpKszE/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Japanese" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cja&hl=en'); return false;"><img alt="Japanese" border="0" align="absbottom" title="Japanese" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbeXzO3BrHg73VoSM-J9WzWG4Dx7MPHAbJhZJwKMEidq8ekNxdJ-BbRhEm9lMXN7W09Pix7fsHVo4ZBBJIsqXRxgVgBMyg0_DDIy9bwNJvjAy0aUIDPUxPRcxI8rXow_vOTF0r-8PISzRS/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Korean" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7cko&hl=en'); return false;"><img alt="Korean" border="0" align="absbottom" title="Korean" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh6HwDm5kHcHqRJCk_IzMdDiZ4occNkf1TPMI3HKEyjM0AV6sCoJS3C-XohXFEGnKCuq4XTwvFiBjBZrkOzKGikrXBE4i1sRJDQhOTTEv2V76KRwcOaW-xyWx1KZ6fnoGWYfPomT-2mKrA/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Arabic" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7car&hl=en'); return false;"><img alt="Arabic" border="0" align="absbottom" title="Arabic" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJbmuNmsSOTu1530Z8wQGjJhKAKhTCe-ICswucBOJ2B8tdNfQCG-iLhuElQv97q_I3toyOnhGNHbnmZLWm5U40Lx8s4qUlmrcvXcm1z1FTIyXYDx7WRmrej98GaTBTAYig0GvC07uRwAM/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
<a class="google_translate" href="#" target="_blank" rel="nofollow" title="Chinese Simplified" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=id%7czh-cn&hl=en'); return false;"><img alt="Chinese Simplified" border="0" align="absbottom" title="Chinese Simplified" height="32" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAKLwv88rfFB7Mx8ytScJI0ZEEtgJSeb5-e1Y7knRU6Gj2tU8LFA1Y9UcmYSJoF5IO84eeBi_HItvahSBcG7gwmddAQLivkjr-ghgxAK5qODzrS4YQCK9iSCL_RbDgEILewa4bjHmEfFU/?imgmax=800" style="cursor: pointer;margin-right:10px" width="24"/></a>
</div> <div style=”font-size:10px;margin:8px 0px 3px 0px”>
by : <a href=http://www.blogspottutorial.com/>Nur Ahwan</a>
</div>



above script is a script which I modified a script google translate without a flag so it will not make your blog a long time loading.
Good luck and if menggalami trouble just write this comment posted I am going to help.

Wednesday, January 4, 2012

How to register your blog on google sitemap.



How to register your blog on google sitemap.
To create a blog and writing widely read and visited our people is due to two possible yaityu due to inter-link between the blog and because of people coming through search engines, especially Google. How can all of us arrested blog entry on google? Use Google Sitemaps.










Here's how:
A. Login dg GMAIL email ID in http://google.com
2. At the very top there is a box ADD SITE -> enter your blog -> Example: http://.lalawanita.blogspot.com
3. Click OK.
4. After that there is no command in the field SITEMAP SITEMAP ADD. Click.
5. Select ADD GENERAL WEB SITEMAP
6. You tick or check mark in the menu (a) I've created, etc., (b) I've uploaded, and so on. (c) My Lyrics .. etc..
7. On the menu is MY SITEMAP URL. with contents of your blog feed. Example: http://lalawanita.blogspot.com/atom.xml
8. Click the ADD WEB SITEMAP
9. There will be a description on the menu that our sitemap status is pending.
10. Click the DIAGNOSTICS menu at the top.
11. Click VERIFY menu. There is testimony that the Verification status: NOT VERIFIED.
12. There is a menu "Choose verification method" -> select ADD A META tag.
13. We are given a code <meta name = "... etc.">
14. Enter the code in the HEAD TSB meta blog template in between the HEAD and / HEAD, preferably under BlogPageTitle {title} {} {/ title}
15. Once the template in the SAVE and republish blog, back to the sitemap and love tick or check mark in the menu "I've added the META tag in the homepage".
16. Click VERIFY.
17. Completed.

Good luck and hopefully succeed.

Thursday, December 22, 2011

How Create Meta Tags for Blog.




How Create Meta Tags for Blog.
Immediately, you follow these steps:

a. Login Account Blog
b. Choose a Plan
c. Edit HTML
d. Put a checklist on "Expand Widget Templates"
e. To anticipate the error should first back-up your Blog Template by way of "Download" Template.
f. After completion of the Back-up, search Code Here, <head>
g. Then Copy the following script code, then paste the code below <head>


Script Code:
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title> <data:blog.pageTitle/> </ title>
<meta content='decrypt the contents according to your blog 'name='description'/>
<meta content=' meta content according to your blog 'name='keywords'/> </ b: if>
<b:if cond='data:blog.pageType == "item"'>
<title> <data:blog.pageName/> </ title>
<meta expr:content='data:blog.pageName ", + "+ + data:blog.title "," + data:blog.pageName' name='description'/>
<meta expr:content='data:blog.pageName ", + "+ + data:blog.title "," + data:blog.pageName' name='keywords'/>
</ B: if>
<meta content='index, follow' name='robots'/>
<meta content=' BLOG USER NAME 'name='author'/>
<meta content='2012, BLOG CONTENTS BY TITLE 'name='copyright'/>
<meta content='1 days' name='revisit-after'/>
<meta content='id' name='language'/>
<meta content='id' name='geo.country'/>
<meta content='Indonesia' name='geo.placename'/>
<meta content='all-language' http-equiv='Content-Language'/>
<meta content='global' name='Distribution'/>
<meta content='global' name='target'/>
<meta content='Indonesia' name='geo.country'/>
<meta content='all' name='robots'/>
<meta content='all' name='googlebot'/>
<meta content='all' name='msnbot'/>
<meta content='all' name='Googlebot-Image'/>
<meta content='all' name='Slurp'/>
<meta content='all' name='ZyBorg'/>
<meta content='all' name='Scooter'/>
<meta content='ALL' name='spiders'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='true' name='MSSmartTagsPreventParsing'/>
<meta content='blogger' name='generator'/>
<meta content='general' name='rating'/>
<meta content='never' name='Expires'/>

Once Done, then Save your template please see your blog.

Sunday, October 16, 2011

How to create a scroll at the Blog Archive



How to create a scroll at the Blog Archive.
As in this blog if the article in it a lot then scroll will function.
For details, just steps like this:
1. Entered first into acount or Blogger Dashboard
2. Select Layout, then click Edit HTML
3. First check Expand Widget Templates
4 .Find the code like this: <div id='ArchiveList'> or Archive.
5. To facilitate the search, just use Ctrl F, continue to type the word you are looking boxed which is served, then click next.
6. If so, add the red code as scroll.
7. The full code is as below:
<h2> <data:title/> </ h2>
   </ b: if>
   <div class='widget-content'>
<div style='overflow:auto; width:ancho; height:200px;'>
   <div id='ArchiveList'>
   <div expr:id='data:widget.instanceId "_ArchiveList"'>
     <b:if cond='data:style == "HIERARCHY"'>
      <b:include data='data' name='interval'/>
     </ b: if>
     <b:if cond='data:style == "FLAT"'>
       <b:include data='data' name='flat'/>
     </ b: if>
     <b:if cond='data:style == "MENU"'>
       <b:include data='data' name='menu'/>
     </ b: if>
   </ div> </ div>
   </ div>
   <b:include name='quickedit'/>
   </ div>
</ b: includable>

200px high figure is that the scroll box, please be adjusted.
Your blog may have different code. Therefore, a similar look and to try, do not forget to keep backup template first.
If it do not forget to save the template.
Please feel free to try it.

Sunday, July 3, 2011

How to create blog content with automatic sitemap



How to create blog content with automatic sitemap.
One of the widget that must exist in your blog is the sitemap. Because as navigation or as a place to browse the entire blog. If a visitor wants to see all the contents of the article to your blog, of course our visitors will be confused if we do not have a blog sitemap, the sitemap that visitors can more easily see the whole content of our blog.
way is as follows:


1. Login to your blogger account.
2. Choose New Entries (New Post)> Edit HTML.
3. Copy sitemap script that will be used below and paste in the posting area. as an example of the father of farhan.

<link href="http://abu-farhan.com/script/acctoc/acc-toc.css" media="screen" rel="stylesheet" type="text/css"></link>
<script src="http://abu-farhan.com/script/acctoc/daftarisiv2-pack.js"></script>
<script src="http://your blog.blogspot.com/feeds/posts/summary?max-results=1000&amp;alt=json-in-script&amp;callback=loadtoc"></script>
<script type="text/javascript">
var accToc=true;
</script>
<script src="http://abu-farhan.com/script/acctoc/accordion-pack.js" type="text/javascript"></script>

4. Click Publish Post and see the results.
Good luck and hopefully succeed.