modal

This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Saturday, 31 March 2012

Add columns to Blogger Footer: How to Add Three Columns to Blogger Footer Section?

The default Blogger template has only one column footer. If you surfing Internet frequently, you will see that many websites and blogs has three column footer. This three column footer is becoming very popular and spreading rapidly in Web 2.0. It's quite easy to implement this type of three column footer in your Blogger template. Moreover, if you do so then you will see some of the good advantages like..
  • You will get enough valuable space for your widgets.
  • You can add/replace more gadgets/widgets.
  • You can rearrange all the gadgets/widgets.
  • If you place all the biggest gadgets at the footer section, the main content will be loaded faster.
  • It will also contribute your blog design as the modern Web 2.0.
This page contains information related to add three columns to your Blogger footer section.

Steps to add three columns to Blogger footer section

Follow the following steps to add three column to Blogger footer section:

Step 1: Back-up your existing blog

Before any type of modification of your blog template code, it's very essential to back-up your existing blog template. You may take backup only the template or the widgets (gadgets) only or you may take the complete back-up of your blogger blog. I already discussed the process of back-up in other pages. To know the process of back-up, you may follow the following posts..

Step 2: Remove all widgets (gadgets) from the footer section

Before doing any change of your Blogger template code, go to your blog's layout and just see whether there is any widget to the footer section. If there is any widget (gadget) then please remove them from the footer section. Alternately, you can drag-and-drop all the widgets form the footer section to anywhere (sidebars or below the main blog post etc.) to the template. After removing all the widgets from the footer, follow the following steps.

Step 3: Adding CSS code for the footer section

This section of code will be the definition of your blog's footer column. All these are used for all the columns design. In this page, I just mentioned the code of the footer columns. You may customize according to your wish by using several colors, lines etc. All these will be discussed in the next tutorial.
Now, go to your template code section.
Before adding CSS code to your blog footer, first find the following two lines of code:
You may use Ctrl + F key to find those texts in Firefox. Please, copy the following code and paste the code before the searched texts i.e. the code ]]></b:skin>

]]></b:skin>
</head>
/*
    Code is developed by: 
    Code Description: 
        Codes for adding columns (3 columns) in the blogger footer section
*/
#footer-columns{
    border-top:1px dotted #999999;
    clear:both;
    margin:0 auto;
}
.column1{
    padding: 0px 5px 3px 5px;
    width: 30%;
    float: left;
    margin:3px;
    text-align: left;
}
.column2{
    padding: 0px 5px 3px 5px;
    width: 30%;
    float: left;
    margin:3px 3px 3px 5px;
    text-align: left;
}
.column3{
    padding: 0px 5px 3px 5px;
    width: 30%;
    float: right;
    margin:3px;
    text-align: left;
}
.addwidget {
    padding: 0 0 0 0;
}
#footer-columns ul {
    list-style:none;
    margin:0 0 0;
    padding:0 0 0;
}
#footer-columns li {
    margin:0;
    padding-top:0;
    padding-left:0;
    padding-bottom:.25em;
    padding-right:15px;
    text-indent:-15px;
    line-height:1.5em;
}
body#layout #footer-columns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
body#layout .column1 {
    width: 32%;
    float: left;
}
body#layout .column2 {
    width: 32%;
    float: left;
}
body#layout .column3 {
    width: 32%;
    float: right;
}

Step 4: Add containers to hold all the footer columns

After adding CSS code, it's time to add the containers for the footer. To add container, first search the following code:
 1.<b:section class='footer' id='footer'/>

Select the above line of code from your blog template and delete the entire line from the template code and paste the following lines of code there :
<div id='footer-columns'>
<div class='column1'>
<b:section class='addwidget' id='col1' preferred='yes' style='float:left;'>
</b:section>
</div>
<div class='column2'>
<b:section class='addwidget' id='col2' preferred='yes' style='float:left;'>
</b:section>
</div>
<div class='column3'>
<b:section class='addwidget' id='col3' preferred='yes' style='float:right;'>
</b:section>
</div>
<div style='clear:both;'/>
</div>
<b:section class='footer' id='footer'/>

Step 5: Save the modified template's work

After successfully finishing the above tasks, save the modified code by clicking Save Template button to save the whole modified code. Now, your blog has three columns in the footer section.

Back-up Blogger Blog Completely: How to Back-up Your Blog Completely (Posts + Comments + Gadgets)

Blog back-up is required to save and restore your blog contents in the critical moment. This will help you to transfer your blog one domain to another or to replace all the contents to another blog or to make security of the contents of your blog. There are many ways to take back-up of your blog completely. Here, complete back-up means to take back-up of posts, comments and gadgets. This page contains the information related to the steps to take for secure back-up of your blog completely.

Note: This tutorial is for back-up your whole blog. If you wish to back-up only the template design then click here or if you want to wish to take back-up the gadgets only then click here.

Steps to back-up your blog completely (Posts + Comments + Widgets)

There are many ways to back-up your blog completely. Here, only the simplest and easiest method has been described. Follow the following steps to back-up your blog completely.

Step 1: Accessing to the "Settings" of your blog

  • Type www.blogger.com to your browser and hit Enter key.
  • Log in to your account by giving your user name and password.
  • After successful log in, you will redirect to Dashboard.
  • From the dashboard, find out the blog to which you want to take back-up completely.
  • After selecting your desired blog, you will see a link named as Settings just below your selected blog. Click on Settings and you will redirect to that blog's setting page.

Step 2: Selecting "Export" to back-up the blog completely

  • From the Settings page, select Basic.
  • Under Basic, you will find Blog Tools part. Here you will find a link Export blog. Click on that link.
The back-up which you Export by following the above steps, is an .xml document. It's size is small but it contains all the posts, comments and gadgets of your blog. If you open the file, you will not be able to read the file but when you import to any blog, you will find all the posts, comments and gadgets as before.
Thus you can save your blog completely into your hard drive and if you required you can bring all these back again.
By following the above steps and instructions, you can completely back-up your blog including all the posts, comments and gadgets (widgets).
 

Back-up Blogger Widgets: How to Back up Your Blogger Widgets

A widget is a portable chunk of code which can be installed and executed fully separately on any web page by any end users and no modification is needed to the original source code of the web page. Widgets can also termed as Gadget, Badge, Module, Webjit, Capsule, Snippet, Mini and Flake. Widgets are usually implemented by using JavaScript, DHTML or Adobe Flash. You need to back-up your blog's Gadget. The reason for back-up your blog's widgets or gadgets are the following:
  • If you want to change your blogger template, then you must have to back-up your blog's gadgets.
  • If you want to change the platform of your blog, then you also need to save the widgets or gadgets.
  • If you want to ensure security of your blog's widgets or gadgets, you also need to keep back-up them.
This page contains the detail informtion to back-up your blog's gadgets.

Steps to back-up blogger widgets or gadgets:

There are many ways to back-up blogger widgets or gadgets. All the ways are applicable to take back-up of your blog's gadgets. Here, I only mentioned the easiest way to take back-up of your blog's gadgets. I will describe this method because it's the easies way to take back-up of your blog widgets. Now, to back-up all the widgets, follow the following steps:

Step 1: Accessing blog's layout

  • Type www.blogger.com on your browser's address bar and log in to your account.
  • After successful log in, you will reach the Dashboard of your account.
  • Select the blog which you want to keep back-up of gadgets. When you find the blog, look immediately below that blog and you will find an option Layout. Click on Layout. After accessing of this page, you will see small rectangle boxes. All these are the gadgets of your blog.

Step 2: Code back-up of all gadgets

See there is an option Edit, each of the widget's right-bottom corner. Click on Edit. A pop-up window will be opened and you will find some code there. Copy the code and save them to a notepad file. Name the notepad file as you wish.
In this way, take back-up all of the gadgets and save them in the notepads.
You don't need to take back-up the following gadgets code:
  • About Me gadget
  • Followers gadget
  • Archives gadget
  • Label gadget
All the above mentioned gadgets are default to your blog and you can't copy the code of those gadgets. As those are by default, those will not be lost ever.

Installing the gadgets (widgets) to a new blog or other blog or other template:

Just copy the code and install to anywhere of your blog. For example, if you just take a back-up of any HTML/JavaScript code, you will add a HTML/JavaScript gadgets and paste the code to that gadgets. In this way, you can add or restore the widgets or gadgets to your new template or other blog.

Back-up Blogger Template Design : How to Back-up Your Blogger Template Design

Before making any type of customization (any type of changes in the HTML code) of your blog template, it's a wise decision to back-up the blog template design. This will help you to back your previous blog stage if you don't like the new modification or you have done some mistake at the time of template code modification. You can easily back-up your blog template design. It's very easy and quick process. This page contains the information to back-up your blog's template design only.

Steps to back-up blogger template design

Follow the following steps to back-up blogger template design:

Step 1: Accessing the code of your blog

Log in to your blogger account and then from the Dashboard, select the Layout of the blog which you want to take back-up. Finally, click on the Edit HTML option.

Step 2: Downloading the template design

After finishing the above steps, you will find an option Download Full Template under Backup/Restore section. Click on Download Full Template to back-up your blog's template design and show the location to download the template.


Note:

By following this tutorial, you only can keep a back-up of your blog design only. All the widgets and the posts will not be baced-up by this step.

Thursday, 29 March 2012

Airtel free working gprs trick 2012 using ucweb handler

Free Airtel Gprs trick march 2012 working with opera mini Handler
Probably m.twitter.com is also block by the airtel. and airtel also block so many handler and VPN trick by which we can get free gprs on our mobile.But you don't have to take tension about that we are regularly posting new working airtel gprs trick by which you can get free internet or gprs on your mobile.This trick is working and 100% tested by my all friends.


Follow This Step.

Step 2: Do following setting in Opera mini Handler
  • Backquery : ?fb.me/browse.php
  • Proxytype : Host
  • Proxyserver : fb.me
Step 3 : Save configuration and Restart Opera mini Handler
Step 4 : wait for few second it will open opera mini, browse and download and enjoy
Step 5 : If you found any query then please comment below.

Vodafone gprs trick 2012 | get 6 GB internet

This month is very very precious for free gprs trick seekers. In this month i think we have post almost all service providers tricks.like airtel gprs trick, vodafone gprs trick,  docomo gprs trick, idea gprs trick march 2012.This is simple trick you have to just send activation sms to vodafone and you will get free gprs upto 6 GB.
  •      Follow This Step:   
                            Just Type "ACT FB" And Send It To "144"

If this trick is works for you and in your state then repeat this procedure for get more free internet

Write comment below for any inquery.

Airtel Free Gprs trick with Nimbuzz handler | April 2012

Airtel is again hacked with new nimbuzz handler.nimbuzz handler is used for social networking sites chat.you use this application to chat your yahoo,google,facebook, aol friends.we have another new latest free airtel gprs trick we are currently posting this.

Follow this step:
Step 1 : Download Nimbuzz Handler Application
Step 2 : Set "Mobile Office" as default setting
Step 3 : Open Handler Application and set following setting in it
  • Frontquery: d.facebook.com/home.php?u=http
  • Host: Realhost
  • proxyserver=fb.me
Step 4 : Save setting and run Nimbuzz and enjoy free gprs
Step 5 : If you found any problem comment below.

Wednesday, 28 March 2012

Unlocking Tutorial for Huawei 3g E-173 Data Card (100% working)



Hey friends as you all were waiting for this unlocking trick for this data card, so i was working for this from last 10 days and now i have got a simple unlocking method for this Huawei model which is being used by most of the Data Card users now they don’t need to pay this much high cost. Huawei E-173 is a 3g USB modem which supports upto 7.2 mbps download speed and 5.7 mbps uploading speed.

Now Let us see how to unlock this modem, So to unlock this modem you need following softwares :

Requirements :

1) Huawei E-173 Firmware (download it here)

2) Universal master code (download it here)

3) Huawei Mobile partner Software (download it here)


## You must have noted down a 15 digit IMEI number of your Huawei modem.


Unlocking method :

1) First of all using universal Master Code get flash code and unlock code for the device.


2) Then plug in the device to your desktop/laptop.

3) After all the drivers have been loaded just double click on E173Update_11.126.85.00.114_B427.exe and it will find your data card automatically.


4) Then the process will start and on the next screen you will be asked to give flash code or unlock code as your password .

5) As this step completes your software will be updated successfully.

6) Now install Huawei Mobile Partner Software.

7) Now open Huawei Mobile Partner and if unlock code asked then enter the code generated in first step.
Create a new profile with corresponding network’s APN and your username and password.

9) Now try to connect device to the internet.

### Hope now you will be able to unlock this modem easily and if you face any problems please leave a comment below.

Play Super Mario Bros Offline & Online : Chrome Extension

Super Mario is one of those classic video game, which I have played a lot in my childhood. Even now, it’s one of those game which I love to play in my leisure time. There are many websites which let you play Mario online, but I prefer something which I can use to play it offline. There are many Super Mario bros Chrome extensions, which let you play this classic game offline. I will point out one such extension, which works great and you can download and install it on Chrome browser. If you are still not using Chrome, you can download it from here and FYI, Chrome is my primary browser from last 1 year because of it’s ultra-fast speed and like Mozilla it also offers unlimited useful extensions. We have already covered many of them in the past and if you have missed out, here are resource for useful extensions for chrome:

Super Mario Bros Chrome extension: (Offline)




Tuesday, 27 March 2012

Unlock idea Zte Mf190 And Firmware Download

Few Days before i have informed you that Idea Gprs Tricks 2012|Idea Free Gprs Trick Once more time so today i am here with the unlocking tutorial of idea ZTE MF190 so go ahead and unlock your modem.

Unlock Idea ZTE MF190 :-                                                                         

  1. First Of All get ZTE MF631 Unlocker From Here.
  2. Install DC Unlocker/ZTE MF631 Unlocker As shows Here.
  3. Now Open DC unlocker and in Manufacture drop down menu select ZTE DATA CARDS and in Model Number Select AUTO DETECT and Click On Search refer below screen shot
     
       4.Now Check Unlocking tab on DC unlocker click on it and then Select Unlock and it will unlock your           modem and you are Done Enjoy

Sunday, 25 March 2012

Tata Docomo free call me tune March 2012.

1)  First Call on 543211985 and select any song free 4 three day.Balance condition Rs.1.10 


2) Don't stop before 5days after 3 days 1Rs deducted 4 1 day.Now in your account balance is .10    
     paisa 



3) Now your HelloTune is free for lifetime from next day
    (if you are activated HelloTune on 01/03/2012 then 1 Rs will be deducted from your account on         04/03/2012 and your HelloTune IS FREE FOR LIFETIME FROM 31/04/2012)

4) Don't Recharge before 5 days Now..Your Hello tune is Free And Enjoy

5) No process for stop this service Because if you send STOP to 543211
    Reply comes like this “You do not have a subscription to Call me tunes

Latest Free Airtel GPRS Trick 9 march 2012

Airtel GPRS hacked again in this march. i hope you have read our last working airtel gprs trick. first trick is about airtel gprs trick march 2012 100% working. In this trick we have new working solution with new IP address.This trick work for mediafire download, FB chat and Torrent and working in all over india.This is working with both Airtel 2g and 3g subscribers.



#Instructions

Step 1: Make new setting
PROXY:66.90.79.174
APN:airtelgprs.com
PORT:80
HOMEPAGE: letstit.blogspot.com

Step 2 : Make this proxy setting in Firefox or IDM or Internet Explorer

Step 3 : Find any query just comment below.

#Note: Try at lower balance to prevent from any loss.

Latest DOCOMO Free GPRS Trick March 2012

Hey friends finally we got latest working TATA docomo Free gprs trick.in this you have to use Handler applications in which you have to put setting what we will tell you.Using this trick you can access free docomo gprs in your mobile and PC browser also.keep reading



Instruction

Step 1 : Download Handler application from here[OPERA is most preferable]
Step 2 : Make new internet setting/ access point as follow

APN : tata.docomo.dive.in
Homepage : letstit.blogspot.com
Proxy : 220.226.181.88
Port : 8080 or 80

For nokia S40 series users download Prov file maker from Here.

Step 3 :Put following settings in your Handler Application
- Use Default setting what we have made
- Set http as Custom Field in Opera Mini handler
-Set Socket Server to http://220.226.181.88.server4.operamini.com OR
   http://203.115.112.5.server4.operamini.com
-Leave Proxy blank

Idea Gprs Tricks 2012|Idea Free Gprs Trick Once more time..

hi friends you may read my previous post free airtel gprs trick . And i am back here with new trick for Idea.

Enjoy it.



Hello Friends!Today i am going to Post An Free Idea Gprs Trick For March 2012.Maybe You Already Know This Trick.But Some States Idea Blocked This Free Gprs Trick.But Try This Trick And Leave Comment If This Trick Working For You or Not.
Idea Gprs Trick March 2012:
First Make A Personal ProfileApn: imisProxy: 10.4.42.15
Port: 8080
Home: Page : https://flyproxy.com (or) https://concealme.com (still working)
That's It.Enjoy Idea Free Gprs Tricks With[...] 

Write Protect your USB Device without any software

Now protect your USB device or other USB device for transferring file from your computer. For security reason I am sharing this to you. This tricks able to help you and nobody does not transfer any file from your PC to any kind of Storage device. So, I hope that it’s must be help you.


Follow the below steps for Enable write protect:
  • Go to your Run option and write “regedit”
  • Now click “Ctrl+F” for find
  • Written the Find box “Storagedevicepolicies” and press Enter
  • Now Click the Write Protect option from the Right side and click to Modify it.
  • Change the Value data 0 to 1
You are done. If you don’t wanna to do this things then just cope the below code and paste it to your Notepad and save it to “writeenable.reg” this names. Then just double click it.

                                               



Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies]
"WriteProtect"=dword:00000000



If you wanna to disable the Write protect system then just follow the same steps of the up and just change the value data 1 to 0 or you can cope the below code and paste it to your Notepad to “writtendisable.reg” this names.


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies]
"WriteProtect"=dword:00000001

How to create movie in 700MB DVD-RIP in MKV (Matroska) format using Handbrake ?

Step 1 : First of all download the handbrake Software from Here .
And open the software like following image.
Step 2 : Click on the Source and select folder and set the full path of your media file and click ok.
Step 3 : For set the destination folder and File Name Click on Browse.
Step 4 : Selet folder and write the file Name and select type as "MKV" and click save.

Step 5 : Select Anamorphic Label Text field and choose Custom. After that You can change your output file resolution Ex. width 720 and height 480 for better print .
Step 6 : Select Video tab and choose Video Codec H.264(x264) and Framerate 23.976 and Target Size 700.
Step 7 : Select Audio tab and Select Language And you can change Audio option and click Start.



Step 8 : Start button becomes Stop button and you can see progress bar on bottom.


How to create an ad-hoc Network?

Step 1 : Open the Control Panel-->Network and Sharing Center And click on Set up a new Connection or Network.
Step 2 : Select Set up wireless ad-hoc Network And click on Next.



Step 3 : After that following image will be appeared And click on Next.



Step 4 : Enter your Network name and set Your Security type and key And select Save this And click on Next.



Step 5 : After that following image will be appeared And click on Close.


How to take a snapshot without any software in windows 7.

Snipping Tool captures a screen shot of anything on your desktop, like a picture or a section of webpage. Snip a whole window, a rectangular section of the screen, or draw a freehand outline with your mouse or tablet pen (or your finger, if you're using a PC with a touchscreen). Then you can annotate, save, or e-mail the image using buttons right in the Snipping Tool window. Snipping Tool is available only in the Home Premium, Professional, Ultimate, and Enterprise editions of Windows 7.

To get Snipping Tool in Windows 7 do the following:

1. Go to Start Menu.

2. Click on All Programs.

3. Go to Accessories.

4. Click on Snipping Tool.



Image-1.


image-2.
                     
I u cant do this watch this video....


                                     

How to Remove "Folder opens in New Window" Problem

In such cases following actions can be taken to solve the problem:

1. Reset the folder options view


Organize > Folder & search Options > General > Browse Folders > Select "Open each folder in same windows"



 2. Organize > Folder & search Options > View > uncheck Launch folder windows in a new process.





How To Post Any Picture On Your Facebook Chat Box

HiyA Friends Before Some Days I had Posted cool Facebook Chat Tricks 2012 about how to Insert Facebook Profile and Facebook Pages Picture during the chat session and today i am posting one more cool Facebook Chat Trick about how to post any picture on your facebook chat box or you can also say that how to get any Picture Code For Facebook Chat Box .
    Just Follow Below Given Simple Steps :


Step 1 – First Login to your Facebook Account.



Step 2 – Now Go To This Site and Like their Facebook Page.



Step 3 – Click on the Choose File Button and choose an image from your computer .



Step 4 – Click on the Upload Now button .



Step 5 – Now Click on Show Codes and Paste the Code to Your Facebook Chat Box.



Thats It !



Enjoy Facebook Chatting with Cool Trick.






Facebook Chat Trick 2012

Facebook have added one new Interesting feature to the new facebook chat. Now Facebook users can inserts the facebook profiles and facebook Pages Pictures during the chat Session.

Adding Pictures during Chat Session is very Simple.

Just Type Unique id or Username between [[ ]] .

[[unique id or Username ]]

For Example :


For Facebook – [[facebook]]

For Google – [[google]]

For Just Tips And Tricks – [[justtipsandtricks]]

For Sharukhan – [[79568514852]]

         
Thats It !

What do you think will it makes facebook chat more better or worse ?

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More