How to add Multi Tab content widgets in blogger?


In some blogs and websites there a gadgets occupy huge amount of space on the sidebars.Due to which the visitors to feel many gadgets on the sides.Sometimes it may take sometime to load the page.So,friends here is the Multi tab widget or gadgets ,which make the your gadgets  to like look like menu with Headings.Your blogger visitor can select widget as he like.
add multi tab cotent widget for blogger





LIVE DEMO


Procedure to add the Multi tab Content widget for blogger

► Go to blogger
► Design(page elements) or Layout
► Add a gadget—>> Html/java script –>>
► Add Below code in the empty box (Please don’t write any gadget title name,leave the title box empty)
<style type="text/css">
.tabber {
 padding: 0px !important;
 border: 0 solid #bbb;
}
.tabber h2 {
 float: left;
 margin: 0 1px 0 0;
 font-size: 12px;
 padding: 3px 5px;
 border: 1px solid #bbb;
 margin-bottom: -1px; /*--Pull tab down 1px--*/
 overflow: hidden;
 position: relative;
 background: #e0e0e0;
 cursor:pointer;
}
html .tabber h2.active {
 background: #fff;
 border-bottom: 1px solid #fff; /*--"Connect" active tab to its content--*/
}
.tabber .widget-content {
 border: 1px solid #bbb;
 padding: 10px;
 background: #fff;
 clear:both;
 margin:0;
}
.codewidget, #codeholder {
 display:none;
}
</style>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript" src="http://greenlava-code.googlecode.com/svn/trunk/publicscripts/bloggertabs0.1_min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
 $('#codeholder').bloggerTabber ({
  tabCount : 3
 });
});
</script>

<!-- to make sure the widget works, do not alter the code below -->
<div id='codeholder'><p>Get this <a href="http://www.bloggersentral.com/2011/05/create-tabbed-content-blogger-widgets.html" target="_blank">widget</a></p></div>

► Save Gadget and Go to part2.

How to arrange Multi tab content widget


► Arrange code box gadget box first

► Then your gadgets boxs next as below in image.

add multi tab cotent widget for blogger2
More..

Earn money by uploading and watching videos at indyarocks.


Today i will say one best website,where you earn money by watching videos and also by uploading videos at indyarocks site.This site is for especially Indian's and this is also India No-1 site.Here you can meet new friends like Facebook,chat and etc.

How to Earn at Indyarocks

► Go to Indyarocks
► Sign up and confirm your email adress
► Start uploading Videos and earn
► Just Watch videos and earn
► Connect your Google Adsense profile and also Earn money.

More..

Get Free Mobile Recahrge and Movie Tickets in India

Get your mobile recharge for free easily and also movie tickets for completing basics tasks like sign up in other sites,surveys,referring friends etc.This is genuine site where already many people earned

How does amulyam work

Completing offers like surveys,registrations and confirming Email ids etc Amulyam gets paid by advertisers.Then they earn and share profit with us.Here,everything is free No investment is required from you.If you referred some one your friends or any one,if they purchased any Air tickets,Mobiles and more you will get an incentive for their Purchase in your account.

How to join the Amulyam?

► Go to Amulyam and register
► Go to Wallet and Fill Wallet
► You will see offers and complete offers
► Enjoy the money and take it out.
►Earn 20% from your friends amount.
More..

Get Mobile Recharge free from Embee Facebook Application

Facebook is the worlds largest social site where we can browse many applications like task,activity and polls etc.Earn of Mobile recharge through Facebook is made easy by Embee pay application.This is one of the best Facebook application.You can easily mobile recharge on Embee application

Procedure to earn Mobile Recharge on Facebook by Embee pay application.

1.Sign in to Facebook
2.Open Embee pay application by Click Here.
3.Get your First 100 points by confirming Email Id and Mobile Number.
4.Refer your friends and earn more points.
5.If they refer and earned 10 points you get 1points,20-2,respectively.
6.You will 10 to 20 points for every survey.

How the Embee points are calculated

1.150 points = $1/ Rs.50
2.300 points = $2/ Rs.100
3.500 points = $4/ Rs.200
4.800 points = $6/ Rs.300

Enjoy the task.


More..

Make your Facebook friends to be scared

How to make fun with facebook friends ?want to know –then try this scared profile

 

Note don't show to any children,pragnet ladies,tension parties and patience

Make your Facebok friends to be scared 

Make your Facebook friends to scared

► Say your friends that a man living for a long years,where he was born in 1852 or any year.

► Make your perfect friend to tempt to open this profile by sending or posting below link.

► Below is the Link of the profile.

               Click Here
More..

How to Center your Header in Blogger using Css ?


how to center header in blogger
Make your blogger header image or title to center by adding this css script in blogger.

To add the blogger header image or title to center

Part1  Css (How to add css in blogger  )
1.Login to blogger.
2.Template or Design
3.Customize
4.Advanced--->Add css--->
5.Add below code in Empty box and press Enter
.header-outer {
margin-left:90px;
}
6.You can change 90px according to your blogger
7.Save template.
More..

How To Add Automata Read More Links Specifications in Blogger?

You have seen before in any website or blogger,showing half of the post with thumbnail "Read More" button clicking on that it redirects to full post page .Today, i am posting the script which makes the automata read more links to all the blogger posts.This read more link can increase page views of your blogger or website.By adding the read more link in the home page.The snippet(half of the post) and thumbnails are shown with bottom read more button as shown in below image.

Add Automata Read More Link in blogger

Add Automata Read More Links Specification in Blogger

Part1

► Login to Blogger.

► Back up your Template.

► Design or Template.

► Edit Html.

► Search for the code </head> using Shortcut key Ctrl+F.

►Add the below code after the </head>.

<script type='text/javascript'>var thumbnail_mode = &quot;no-float&quot; ;
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>

► Save Template.

Part2

► After saving Template Tick  at Expand Widgets Box.

Search for the code <data:post.body/> using shortcut key Ctrl+f

► Replace <data:post.body/> with below code.

<b:if cond='data:blog.pageType == &quot;static_page&quot;'><br/>
<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'> Read More ►►</a></span>

</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>
</b:if>

► Save Template You are done.

More..

How to disable Country Domain redirects specification in Blogger.


disable this blogger country domain redirects specification add below code in blogger Recently in the google blogger site the country specifications domain redirects has made changes in the domain name of bloggers,who are running free domain with blog name has their sub-domain.
(Example:-Myblog.blogspot.com redirecting to Myblog.blogspot.in) in India.





To disable this blogger country domain redirects specification add below code in blogger

1.login to blogger.
2.Design or template
3.Edit html
4.Search for <head> using crtl+f  shortcut key
5.Add the below code after the <head>
<script type="text/javascript">
if ((window.location.href.toString().indexOf('.com/'))=='-1')
{
window.location.href = window.location.href.toString().replace('.blogspot.in/','.blogspot.com/ncr/').replace('.blogspot.com.au/','.blogspot.com/ncr/').replace('.blogspot.co.nz/','.blogspot.com/ncr/');
}
</script>
6.That’s all.
More..

How To Show Your Profile image In Google Search Results?

How To Show Your Profile Image in Google Search Results
Recently Google Webmasters has introduced the new feature of showing our profile image thumbnail next to our post in Google search engine.I think you might have see this in Google search results. If you want add your profile image thumbnail in Google search results follow my below post.

Show Your Author Profile Image In Google Search Results

     Must have this Positions to be done by you:-
► Website or Blogger.
► Google+ account
► About me page In Blogger or Website.
If you above Qualifications Follow Below steps

Part1

Add the below code at the sidebar,header or footer anywhere on your blogger or website
<a href="https://plus.google.com/GOOGLE+ ID"
rel="author" target="_blank"> Join me on Google+</a>
► Don’t edit the rel="author” because the trick not works
► Add the GOOGLE+ID with your google+ id (How to get Google+ profile id number)

Part2

► Now create about me page on your blog or website,If you have no need.
► Add below code anywhere on your about me page.
<a href="https://plus.google.com/GOOGLE+ ID"
rel="me" target="_blank"> My Google Profile</a>
► Don’t edit rel="me"
► Now again add the Google+ profile id.

Part3

► Now Go to Google+ plus profile.
How To Show Your Profile Image in Google Search Results3
►  Go to edit profile.
How To Show Your Profile Image in Google Search Results4
► You can see Recommended Links and Contributor Links at left side.
How To Show Your Profile Image in Google Search Results5
► Add the your website url and About me page url there.
►After adding click on Done Editing.
► Upload your Google+ profile picture same that you uploaded in About me page.

Testing

Click Here and Enter your url address and click on preview to test,you will see as below.
How To Show Your Profile Image in Google Search Results2
► If you seen above marked text same for your site.That’s all.
More..

Host Blog Scripts and Files Of Blogger on Dropbox For Free.

Today we are all learning about the hosting of our blogger files and scripts like css,java scripts,html files and more that belong to your blogger.There a site where we can upload the blogger scripts and files.This is a safe procedure of hosting files on a drop box.Drop box provides us about 2Gb of space with 10Gb Band width.you can also get public link of your files.
   

Part1-The Best Features in Drop are-
1.Synchronization o files through Drop box software.
2.Uploading the files via Drop box.


    Part2- How to Host Blogger scripts and files for free on Drop box.

More..

How To Customize Facebook Like Box?


Every website or blogger contains Facebook like box plugin with title of their brand, to share there posts on Facebook through their website or blogger to the people who became fans to their Facebook like  box.when ever the blog owner post the new post.The post directly updated along with link to their Facebook fans.Facebook has created to official Facebook like box plugin for every page created on Facebook.
Customize this Facebook like box plugin is very difficult,but daddy design made it easy at last.the
The customization of this Facebook like box is depend on css.


More..

Step-by-step Installation of Windows7 Ultimate with Screenshots

Part1:-
Installation planning(Optional)

Before installation process just go planning of operating system(os) like knowing about your system configuration,Because you can avoid some problems during installation

Follow these important things and plan before starting windows7 installation:-

► Check system requirements
►Determine Disk partioning
►Check the Hardware and software compatibility

According to Microsoft minimum specifications for operating system in the installation of windows7:-

►1-GHZ  32-bit processor or 64-bit processor.
►1 GB of system processor.
►16 GB of Available disk space
►Support for Directx9 graphics with 128MB(to enable the Aero-theme)
►DVD R/W Drive
►Internet Access(To get updates and activate).


More..

Add the moving bubbles effect to blogger.

add bubbles to blogger







Today i will post about the new bubble effect for blogger,which make your blogger to be different look.According to me adding this bubble effect better at the time of any occasions and events.so make book mark of this post because it may be useful in the future for your blogger.

More..