Friday, 15 February 2013

How To Recover a Deleted Blog?

In the daily basis, Bloggers are increasing across the world in a huge number. Most of the blogs are violating copyrights, Only few blogs are running genuinely. The blogs, Which are running with Copied content, illegal material..etc., will be deleted due to DMCA.
          Google only deletes the blogs, Which are violating Blogger and DMCA terms permanently without any Notification. Most of the blogs are deleted in a monthly basis, Sometimes genuinely and sometimes mistakenly. If you are sure that, Your blog is deleted mistakenly, Don't worry. You can recover your blog easily. If your blog is deleted due to copyright violation, Your blog will not back. Be patience, There are several ways to get your blog back, If your blog is deleted mistakenly. Just follow the following steps :)

1. Contact Blogger Team

Send a counter notice to Blogger team and mention everything about your blog in a peaceful manner. You have to submit your Name, Email, Phone Number, Blog Address (Not custom domain, Provide your blogspot address) and signature in the following form.

2. Send a Spam Appeal

If you are not received any response by contacting Blogger Team, Then submit an appeal by using this Secret form.

3. Post a thread at Blogger Help Forums

Post your appeal in a peaceful manner with exact details at Blogger Help Forums. Click the following link and make a thread there.

4. Visit Google Customer Service Center

You can consult GCSC (Google Customer Service Center) office located at your local town or city. If you are running your blog officially with huge number of followers, Consult a GCSC office which is located nearer to your area. All GCS Centers across the world are located in the below page.

Why a blog deletes, Even though the blog is running Genuinely?

Every day, Google receives a big number of DMCA complaint reports. Blogger team verifies their level the best and takes an action against the infringed URL. Some of hackers sends false claims with neat presentations to confuse Blogger team. If blogger team confuses, Then your content will deletes. If you are sure that, Your content is legal, Then you can re-appeal to Blogger team from the mail, Which you receives after the deletion of the content. If your blog receives many false claims at a time and Blogger team confuses, Then your blog will deletes.
          So, Blogger giving an opportunity for genuine bloggers to restore their blogs back. Just follow the above steps. If you ran your blog officially, without violating Blogger terms, Your blog will definitely backs.

Doubts?

After submitting an appeal to Blogger Team, Give at least 24-48 hours to google. If your blog is not restored, Then only go to step 2. Many people restored their little baby without any loss. If your blog is not back from all the three steps, Go to the fourth step. Then you can know the full details. Please note that, Don't make any false claims. That will lead to suspension of your Blogger account!
          If you have still any doubts regarding this, Feel free to ask below by adding a comment. I know you'll   have tons of questions. I'll definitely respond ASAP.

Monday, 21 January 2013

Automatic Read More with Thumbnails For Blogger Posts

Read more function is used to cut our post on homepage, post will appear fully when we click read more link. It's cut automatically and if we insert image, it appears thumbnail. Generally, If we want to get read more post, We have to add Page Break for the post. But It is hard to do this for every post. So, To get read more option for every post automatically, Follow the below procedure.
  1. Go To Blogger > Template > Edit HTML > Expand Widget Templates
  2. Find this: <data:post.body/> and Replace it with the below code.
<b:if cond='data:blog.pageType == "static_page"'><data:post.body/><b:else/> <b:if cond='data:blog.pageType != "item"'> <div expr:id='"summary" + data:post.id'><data:post.body/></div><script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script> <span class='rmlink' style='float:right;padding-top:20px;'><a expr:href='data:post.url'>Click Here To Read More...</a></span> </b:if><b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if></b:if>
3. Paste the below code just above </head> tag.
<script type='text/javascript'>var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 100;
img_thumb_width = 120;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}

function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}

var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}

//]]>
</script>
4. That's it. You are all done! If you have any doubts, Drop your comments below! 

Saturday, 22 December 2012

HTML Color Code Generator

The below two tools will help you to get the six digit hexadecimal color code value. The tools will helps you a lot in customizing Blogger templates, HTML Editing, Appealing posts..etc. Just follow the following instructions to know how to use the generators.

Color Code Generator

Instructions:
  1. First drag the bar on the "Hue" selector to the area of your desired colour palate. 
  2. Then click inside the Brightness/Saturation area and drag the cursor until you have achieved your desired colour. The "Swatch" bar shows you the final colour result.
  3. The hexadecimal colour code is generated in the "Hex" box. Simply copy the six digit code i.e #000000
  4. That’s it!

Color Wheel For Choosing Matching Palate Colors

This is a pretty useful tool to achieve matching or cohesive colours for navigation menu, background, hyperlinks, header etc. Instructions:
  1. Simply paste the six digit colour code in the form below without the hash (#) sign and then hit Update
  2. The matching colour codes will appear inside the four boxes at the right side.
  3. You can then copy the hex values and start using them!
All due credits for these tools goes to 2createawebsite

Tuesday, 13 November 2012

How to Show/Hide Widgets in Blogger?

Many of bloggers are interested or struggled to show/hide widgets in a custom page. Some of they thinks that, It is possible in wordpress or other hosted websites. But, It is possible in Blogger too! To do this, Follow the article!

To Show The Widgets Only In Home Page :

<b:if cond='data:blog.url == data:blog.homepageUrl'>
WIDGET CODE GOES HERE
</b:if>

To Hide The Widgets Only In Home Page :

<b:if cond='data:blog.pageType == "item"'>
WIDGET CODE GOES HERE
</b:if>

How To Show Widgets Only On Static Pages?

<b:if cond='data:blog.pageType == "static_page"'>
WIDGET CODE GOES HERE
</b:if>

How To Hide Widgets On Static Pages?

<b:if cond='data:blog.pageType != "static_page"'>
WIDGET CODE GOES HERE
</b:if>

How To Show a Widget On a Selected Post Only?

<b:if cond='data:blog.url == "URL OF Selected Post"'>
WIDGET CODE GOES HERE
</b:if>

How To Hide a Widget On a Selected Post?

<b:if cond='data:blog.url != "URL OF Selected Post"'>
WIDGET CODE GOES HERE
</b:if>

How To Control Blogger’s Official Widgets?

The same procedure can be applied to Blogger’s official widgets like About Me, Archives, Poll etc. For controlling that widgets do this,
  1. Go To Blogger > Design > Edit HTML
  2. Backup your template
  3. Check the Expand Widgets Templates Box
  4. Search for the title of the widget you want to control
  5. The code for the widget will look something similar to this one,
<b:widget id='HTML' locked='false' title='WIDGET-TITLE-HERE' type='Profile'>
<b:includable id='main'>
LARGE CHUNK OF WIDGET CODE
</b:includable>
</b:widget>
On finding the title in place of WIDGET-TITLE-HERE you will find two similar codes like those I have shown in bolded blue  You just need to add the Controlling codes in the following manner. For example if you wish to show a widget at Homepage only then do this,
<b:widget id='HTML' locked='false' title='WIDGET-TITLE-HERE' type='Profile'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
LARGE CHUNK OF WIDGET CODE
</b:if>
</b:includable>
</b:widget>
That’s it. Do the same for applying any controlling code. I hope this was useful :)

Saturday, 28 July 2012

Move Blog Title To The End In Post Title To Increase SEO

Most Of The New Bloggers Doesn't Know About This. Some Dynamic Templates Or Custom Templates Shows The Blog Title In First Of The Post Title. This Decreases Your Blog SEO !! 
For Ex :

Your Blog Title : Unbelievable Tricks By Aravind
Your Post TItle : Move Blog Title To The End In Post Title To Increase SEO

If Your Blog Post Title Is Like This :
Unbelievable Tricks By Aravind : Move Blog Title To The End In Post Title To Increase SEO

Then Your Blog SEO Is Not Perfect...!!!
Do The Following Steps To Correct Your Mistake.

*Tutorial*
  • Go To Your Blogger Dashboard & Click On Design >> Edit HTML.
  • Search For This : <title><data:blog.pageTitle/></title>
  • Replace It With The Below Code :
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<title><data:blog.pageName/> | 
<data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>

And You Are Done.
If You Have Any Doubts Just Drop A Comment Below. I'll Reply U :)