Download this Blogger Template by Clicking Here!

Ad 468 X 60

Friday, May 11, 2012

Live Demo of Color and Image Posting Background

This is Live Demo of Colored Posting Background

Santa: I found Aladdin's Lamp last week.
Banta: What did you do with it?
Santa: I rubbed it and asked him to increase all wives intelligence by 10 times.
Banta: But things don't seem to have changed with Preeto.
Santa: Let me finish. The ginnie laughed & told me, Multiplication does not apply to Zero. :P
 Morbi vestibulum dignissim sapien. Vivamus velit magna, tristique sed, pulvinar id, consequat ut, purus. Aliquam auctor, nunc sed imperdiet ultrices, quam nibh dapibus nibh, vel sodales magna lectus eu dolor. Fusce eget urna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam nulla sem, mattis sit amet, varius a, convallis eu, mi. Suspendisse mollis, felis at dictum luctus, dolor ligula cursus justo, ut blandit justo dui ut quam.






Read more

Sunday, May 6, 2012

Live Demo Comparing Table with CSS Facebook Style for Blogger


Live Demo Comparing Table with CSS Facebook Style for Blogger

Comparing Table


Title1
Title2
Category1
Category2
Category3
Category4
Category5




Back to Tutorial


Read more

Friday, April 13, 2012

Attractive Pro Subscriber Widget for Blogger


Live Demo of Attractive Pro Subscriber Widget for Blogger Widget  =====>>>>>



Read more

Friday, March 30, 2012

Add Cool Animated Flying Stars Widget

This Widget Is Give You A Cool Look For Your Blogger
After Add This Widget Animated Stars Flying Around In Your Blog/Page
Let's Know How To Add This Widget To Blogger ......!



Paste below codes in Add HTML/JavaScript Widget.



<script type="text/javascript"> 
          
          //Configure below to change URL path to the snow image 
          var snowsrc="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAVC4oRShxeDSItD9Qkyd2fXXzU1_Pv3YQ5PeXHZ5vzJkv4au6I0pfDgKK-Hl9rogbvl0pVdiMxXk8gr6_Cx_TeDknfa9tEgCRfJr2meSVP6cd8T7VBRFV9_BTFYCJzVLjtT75qLqi9bYG/s1600/ColoredStars.gif" 
          // Configure below to change number of snow to render 
          var no = 50
          // Configure whether snow should disappear after x seconds (0=never): 
          var hidesnowtime = 0; 
          // Configure how much snow should drop down before fading ("windowheight" or "pageheight") 
          var snowdistance = "pageheight"; 
     
        ///////////Stop Config////////////////////////////////// 
     
          var ie4up = (document.all) ? 1 : 0; 
          var ns6up = (document.getElementById&&!document.all) ? 1 : 0; 
     
            function iecompattest(){ 
            return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body 
            } 
     
          var dx, xp, yp;    // coordinate and position variables 
          var am, stx, sty;  // amplitude and step variables 
          var i, doc_width = 800, doc_height = 600; 
         
          if (ns6up) { 
            doc_width = self.innerWidth; 
            doc_height = self.innerHeight; 
          } else if (ie4up) { 
            doc_width = iecompattest().clientWidth; 
            doc_height = iecompattest().clientHeight; 
          } 
     
          dx = new Array(); 
          xp = new Array(); 
          yp = new Array(); 
          am = new Array(); 
          stx = new Array(); 
          sty = new Array(); 
          snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_upBVtpUGLmhoEwtUQojzqFjAFg-thjyR81hjduJ8UzSiJmBDwxpNazIC1VWvOnyVGh0hpyliT7NWJfT4gDU0Et_jBFOhdu7O3LMSVGyrZSX86I0BTZivXhJJaUxv7BXtF_TMy9ApZCM/s400/snow.gif" : snowsrc 
          for (i = 0; i < no; ++ i) { 
            dx[i] = 0;                        // set coordinate variables 
            xp[i] = Math.random()*(doc_width-50);  // set position variables 
            yp[i] = Math.random()*doc_height; 
            am[i] = Math.random()*20;         // set amplitude variables 
            stx[i] = 0.02 + Math.random()/10; // set step variables 
            sty[i] = 0.7 + Math.random();     // set step variables 
                if (ie4up||ns6up) { 
              if (i == 0) { 
                document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>"); 
              } else { 
                document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"> 
     
    <img src='"+snowsrc+"' border=\"0\"><\/div>"); 
              } 
            } 
          } 
     
          function snowIE_NS6() {  // IE and NS6 main animation function 
            doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10; 
                doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight; 
            for (i = 0; i < no; ++ i) {  // iterate for every dot 
              yp[i] += sty[i]; 
              if (yp[i] > doc_height-50) { 
                xp[i] = Math.random()*(doc_width-am[i]-30); 
                yp[i] = 0; 
                stx[i] = 0.02 + Math.random()/10; 
                sty[i] = 0.7 + Math.random(); 
              } 
              dx[i] += stx[i]; 
              document.getElementById("dot"+i).style.top=yp[i]+"px"; 
              document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px"; 
            } 
            snowtimer=setTimeout("snowIE_NS6()", 10); 
          } 
     
            function hidesnow(){ 
                if (window.snowtimer) clearTimeout(snowtimer) 
                for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden" 
            } 
               
     
        if (ie4up||ns6up){ 
            snowIE_NS6(); 
                if (hidesnowtime>0) 
                setTimeout("hidesnow()", hidesnowtime*1000) 
                } 
     
         
    </script>



Changes

50 change numbers, according to urself, it tell us that how many numbers of star we want to show.



Read more

Thursday, March 29, 2012

HTML Code Here
Read more



Why do you run after scripts such as jquery while you can use simple CSS and HTML to create beautiful drop down menus for your blog. I already shared a list of 30 Navigation menus and now you need to learn how to create a drop down menu in a navigation. I am sharing a simple code here that can be fully customize to make your preferred changes. So lets get to work!

How To Create a Drop Down Menu?

A drop down menu is needed when you have too much content on your blog or you love keeping things organized. To add a drop down menu to your blogger blogs do this:
  1. Go To Blogger > Design > Page Elements
  2. Select a HTML/JavaScript Widget just under the header and paste the following code inside it,

CODES.............!!!!!
<div id='fbnavbar'>
      <ul id='fbnav'>
        <li>
          <a href='#'>Home</a>
        </li>
        <li>
          <a href='#'>About</a>
       </li>
        <li>
          <a href='#'>Contact</a>
        </li>
  <li>
           <a href='#'>Sitemap</a>
            <ul>
                <li><a href='#'>Sub Page #1</a></li>
                <li><a href='#'>Sub Page #2</a></li>
                <li><a href='#'>Sub Page #3</a></li>
              </ul>

        </li>
      </ul>
    </div>
Replace # with your Page Links and the bolded text with relevant page names. The yellow highlighted code is responsible for the drop down menu. You can copy and paste it under any tab you want just before </li>
To add another tab just paste this code above </ul>
<li>
          <a href='#'>Tab Name</a>
        </li>
       
    3.   Now Go to Design > Edit HTML
    4.   Backup your template and search for ,
]]></b:skin>
     3.   Just above it paste the code below,
/*----- FB Drop Down Menu ----*/

#fbnavbar {
    background: #060505;
    width: 960px;
    color: #FFF;
        margin: 0px;
        padding: 0;
        position: relative;
        border-top:0px solid #960100;
        height:35px;
}

#fbnav {
    margin: 0;
    padding: 0;
}
#fbnav ul {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}
#fbnav li {
    list-style: none;
    margin: 0;
    padding: 0;
        border-left:1px solid #333;
        border-right:1px solid #333;
        height:35px;
}
#fbnav li a, #fbnav li a:link, #fbnav li a:visited {
    color: #FFF;
    display: block;
   font:normal 12px Helvetica, sans-serif;    margin: 0;
    padding: 9px 12px 10px 12px;
        text-decoration: none;
       
}
#fbnav li a:hover, #fbnav li a:active {
    background: #BF0100;
    color: #FFF;
    display: block;
    text-decoration: none;
        margin: 0;
    padding: 9px 12px 10px 12px;
       
   
       
}
#fbnav li {
    float: left;
    padding: 0;
}
#fbnav li ul {
    z-index: 9999;
    position: absolute;
    left: -999em;
    height: auto;
    width: 160px;
    margin: 0;
    padding: 0;
}
#fbnav li ul a {
    width: 140px;
}
#fbnav li ul ul {
    margin: -25px 0 0 161px;
}
#fbnav li:hover ul ul, #fbnav li:hover ul ul ul, #fbnav li.sfhover ul ul, #fbnav li.sfhover ul ul ul {
    left: -999em;
}
#fbnav li:hover ul, #fbnav li li:hover ul, #fbnav li li li:hover ul, #fbnav li.sfhover ul, #fbnav li li.sfhover ul, #fbnav li li li.sfhover ul {
    left: auto;
}
#fbnav li:hover, #fbnav li.sfhover {
    position: static;
}
#fbnav li li a, #fbnav li li a:link, #fbnav li li a:visited {
    background: #BF0100;
    width: 120px;
    color: #FFF;
    display: block;
    font:normal 12px Helvetica, sans-serif;
    margin: 0;
    padding: 9px 12px 10px 12px;
        text-decoration: none;
z-index:9999;
border-bottom:1px dotted #333;
   
}
#fbnav li li a:hover, #fbnavli li a:active {
    background: #060505;
    color: #FFF;
    display: block;     margin: 0;
    padding: 9px 12px 10px 12px;
        text-decoration: none;
}
Make these changes:
  • Change #060505 to change background color of the Main menu
  • Change  the yellow highlighted text to change font color, size and family
  • Change #BF0100 to change the background of a tab on mouse hover
  • Change #BF0100 to change the background color of the drop down menu
  • Change #060505 to change the background color of drop down menu on mouse hover
      4.    Save your template and you are done!

Visit your Blogs to see a beautiful Navigation menu just below Header. Have Fun! :)
If you have any questions feel free to post them.
Read more

Sunday, March 25, 2012

Collection iPhone Top Wallpapers in HD Demo

These are the some examples of iPhone Wallpapers, Click on Download button on go from here and download 100 HD iPhone Wallpapers.



















Read more