728x90 AdSpace

  • Latest

      Wednesday, 10 June 2009

      Multi Tab Widget For Blogger/Blogspot Blogs -Updated

      Update: A more cuter and improved widget can be found here -> Advanced Multi Tabbed Widget


      multi-tab-widget-for-blogge

      Multi tab Widget is a must widget for every blog may that be wordpress hosted blog or Blogspot/Blogger. It helps to decrease the load time of a blog by combining three or more than three widgets into one! .You might have seen this widget on every blog and even on my blog (look at the sidebar) but the question is how do you add it? Well If you go and search in Google on how to add a multi tab widget to your blog you will land on various blogs with several tutorials but believe it or not, disappointment is what you will get in return. Now why is that?

       

      This widget looks cool only if coded with CSS and JavaScript. Several blogs share different tutorials but unfortunately most of these tutorials are either very difficult to understand or they are written in a technical language that a newbie can’t understand. Moreover the codes that they offer are pretty lengthy which increase the load time of your homepage and often the widget doesn’t seem to work in browsers like Internet Explorer. And the worst part is that some bloggers who share this trick often add their blog link to the widget code and when you view that widget in your blog, at the bottom of that widget you will find this “ Widget by XYZ.com” or “Grab This Widget”. This link is surely injustice with the reader. In short give preference to anything which is easy to understand, interesting and which may give a professional look to your blog not a Grab this widget look.

      Now how come my widget be very different. As I have mentioned in my About Me page that I am not an HTML or JavaScript expert but I have learnt the art of editing my template through trial and error. I read blogs day and night and when some blog catch my attention I start playing with its template via its Source File, which shows all their template coding in HTML, XML and CSS Language. Hence I have stolen many hidden and secret codes :D and thus I am ready to share those codes with you. Don’t worry I will never add a Grab this widget  link to any widget that I share.

      UPDATE:-

      Most of you complained that the tabs are not working/clickable. I was amazed too because this widget was working perfectly alright in all my test blogs. Then how come its not working in your blogs? Well the answer was simple than I could imagine.

      This widget uses a JavaScript which is responsible for making the tabs clickable. I saved this widget in Google sites and link it to this widget. This was the mistake that I commit. Google sites offers limited bandwidth and is far slow to respond than you can imagine. Hence when you guys would add this widget to your blog, the JavaScript would not load, as a result leading to static tabs.

      Fortunately I have updated this post with all necessary steps to take. You will have to add the JavaScript directly to your blogger templates. Doing this will improve the widget performance and will also reduce your page load time. This update will solve all your problems!

      Follow the Steps Below,

      • Go To Blogger > Layout > Edit HTML
      • Search for  </head>              (Tip: Use Browser Search Box. Press Ctrl + F )
      • And Just above </head> paste the code below,

      <script type='text/javascript'>

      //<![CDATA[

      function tabtampil_oom(TPID, id)
      {
        var Tabtampil = document.getElementById(TPID);
        var TTs = Tabtampil.firstChild;
        while (TTs.className != "TTs" ) TTs = TTs.nextSibling;
        var TT = TTs.firstChild;
        var i   = 0;
        do
        {
          if (TT.tagName == "A")
          {
            i++;
            TT.href      = "javascript:tabtampil_ubah('"+TPID+"', "+i+");";
            TT.className = (i == id) ? "Active" : "";
            TT.blur();
          }
        }
        while (TT = TT.nextSibling);
        var Halamans = Tabtampil.firstChild;
        while (Halamans.className != 'Halamans') Halamans = Halamans.nextSibling;
        var Halaman = Halamans.firstChild;
        var i    = 0;
        do
        {
          if (Halaman.className == 'Halaman')
          {
            i++;
            if (Halamans.offsetHeight) Halaman.style.height = (Halamans.offsetHeight-2)+"px";
            Halaman.style.overflow = "auto";
            Halaman.style.display  = (i == id) ? 'block' : 'none';
          }
        }
        while (Halaman = Halaman.nextSibling);
      }
      function tabtampil_ubah(TPID, id) { tabtampil_oom(TPID, id);
      }
      function tabtampil_inisial(TPID) { tabtampil_oom(TPID,  1);
      document.write('');}

      //]]>

      </script>

      • Save your template

       

      Adding the code for  Multi Tab widget to HTML/JavaScript widget

      The Code for Our Multi Tab Widget looks like this,

      <style type="text/css">
      div.TabTampil div.TTs
      {height: 24px; overflow: hidden; }
      div.TabTampil div.TTs a:hover, div.TabTampil div.TTs a.Active
      { background-color: #eee; }
      div.TabTampil div.Halamans
      { clear: both; border: 1px solid #fff; overflow: hidden; background-color: #ffffff;}
      div.TabTampil div.Halamans div.Halaman
      { height: 100%; padding: 0px; overflow: hidden; }
      div.TabTampil div.Halamans div.Halaman div.Alas
      { padding: 3px 5px; }
      div.TabTampil div.TTs a
      { border-left:1px solid #eee; border-right:1px solid #eee; border-top:1px solid #eee; border-bottom:0px solid #eee; float: left;
      display: block; width: 95px; text-align: center; vertical-align: middle; height: 24px; padding-top: 3px; text-decoration: none; font-family: "Arial", Serif;
      font-size: 11px; font-weight: 900; color: #000000}
      </style>
      <form action="tabtampil.html" method="get">
      <div id="TabTampil" class="TabTampil">
      <div style="width: 300px;" class="TTs"> <a>Tab 1</a> <a>Tab 2</a> <a>Tab 3</a></div>
      <div style="width: 300px; height: 300px;" class="Halamans">
      <div class="Halaman">
      <div class="Alas">
      <br/>

      Tab 1 content goes here

      </div>
      </div>
      <div class="Halaman">
      <div class="Alas">
      <br/>


      Tab 2 content goes here


      </div>
      </div>
      <div class="Halaman">
      <div class="Alas">
      <br/>


      Tab 3 content goes here

      </div>
      </div>
      </div>
      </div>
      </div></form>

      <script type="text/javascript">tabtampil_inisial('TabTampil');</script>

      Things To Note:

      #eee : This is the background colour of the Tabs. The Default one is grey. If you want to change it to a different colour of your choice then use MBT Embeddable Colour Chart

      #fff :  This is the colour of the border of your multi tab widget. The default one is white you can customize it to a colour of your choice using the same colour chart mentioned above.

      #ffffff : This is the background colour of the main body of your widget. This is where you will add content to the widget. The default one is white. Use MBT Colour Chart if you wish to use a different colour.

      #eee : This is the colour of the borders around those rectangular tabs. The default one is grey. Use MBT Colour Chart if you wish to use a different colour.

      #000000 : This is the colour of the text/font that you will write to name your tabs. In other words, it’s the colour of your tab titles. The default one is black.

      Replace these with your tab titles

      Tab 1 , Tab 2  , Tab 3

      Replace these with your widget codes.

      Tab 1 content goes here , Tab 2 content goes here ,  Tab 3 content goes here

      Here goes the codes of your content/widgets, which can be your recent comments widget, recent posts widget, any written text, a picture etc. For example, to add a recent comments widget to the first tab, name Tab 1 as Comments and replace Tab 1 content goes here with the HTML code of your recent comments widget.

      Adding the Multi Tab Widget To your Blog

      After you have customized the code, do the following,

      • Log into your blogger account
      • Go to Layout > Page Elements

      Blogger Layout Page Elements

      •  Click on Add a Gadget

      add-a-gadget

      • Then Choose HTML/JavaScript Widget from the widget list that blogger provides

      htmljavascript widget blogger

      Now paste your customized code into this widget by leaving the title empty. Hit Save and You are Done! Check your blog to see the new dress :)

      That’s All!

      Feel free to ask or suggest. Your questions and suggestions are the only favour I get in return.

      Adobe Photoshop CC is an outstanding tool for image editing. However, it has enhanced its features in its later releases. Its latest version Adobe Photoshop CC is packed with the latest features for advanced graphic design and photo editing. Now photo editing has become very easy with all new Adobe Photoshop CC. Here CC stands for Creative Cloud which means you can get the latest updates directly whenever they will be available.
      It cannot be said that Adobe Photoshop is solely for image editing. Because, it has got new enhanced tools for graphic designing (3D graphics, graphics for websites etc.), CSS, animations and video editing. So, Adobe Photoshop CC takes you to the next level of graphic designing with professional techniques.
      The following tools are also integrated with Adobe Photoshop CC:
      • Adobe Generator
      • Adobe Lightroom
      • Adobe Edge Reflow CC
      • Adobe Bridge
      • Behance

      What’s New in Photoshop CC 2014

      Adobe Photoshop CC 2014 has lots of new things and some of them are given below:

      Camera Shake Reduction

      Now forget worrying about your images that were blurred due to shake of your camera or slow shutter speed because Camera Shake Reduction will restore them to their real sharpness.

      Smart Sharpen

      This technology gives your images a realistic look. It sharpens your images or photos to maximize clarity and reduce noise.

      Perspective Warp

      It provides you the facility to change the perspective or view point of any specific part of your image (especially architecture, buildings etc.) without causing any distortion to the surrounding area.

      3D Printing

      Adobe Photoshop CC provides you an all new support for 3D printing.

      Smart Image Resolution Upgrade

      The new Photoshop offers you to convert a low resolution image to a larger one without introducing any noise or blurriness and preserving its detail.

      Enhanced Web Graphics Designer and CSS Generator

      Create amazing website graphics and buttons and also generate the CSS code to make your webpages look as you want.

      Smart Video Creation

      Create any video clip using full range of Photoshop tools. Now you can use Adobe Premiere Pro CC for advanced editing.

      Faster Performance

      Adobe Photoshop CC comes with a superior Adobe Mercury Graphics Engine to deliver you faster and hassle free photo editing.

      Details

      Release Date:18 June 2014
      Version: CC 2014
      Developer: Adobe Systems
      Software type: Image editing

      Minimum System Requirements

      Operating System: Windows 7 SP1/Windows8/8.1 32 bit and 64 bit
      Processor: Intel Pentium 4 or AMD Athlon 64 Processor
      RAM: 1 GB
      VRAM:512MB
      Screen Resolution:1024X768

      Screenshots

      Adobe Photoshop CC - Screenshot 1
      Adobe Photoshop CC - Screenshot 2

      Download

      Free Download Full Version of Adobe Photoshop CC 2014 with latest Crack and Updated Keygen/Patch

      Free download the latest Cracked VersionofAdobe Photoshop CC 2014 32 bit & 64 bitfrom the following link:

      http://bit.ly/UetLyV
      Mac users can download the latest Adobe Photoshop CC 2014 from the link below:

      Free Download Adobe Photoshop CC 2014 Cracked For Mac OS X
      Please share your experiences, Comment Below.
      • Blogger Comments
      • Facebook Comments

      0 comments:

      Post a Comment

      Item Reviewed: Multi Tab Widget For Blogger/Blogspot Blogs -Updated Rating: 5 Reviewed By: Adeel Qamar