Thursday 31 January 2013

Add Shareaholic Sassy Bookmarks To Blogger

How To Add Shareaholic Sassy Bookmarks To Blogger

  • Go to Blogger Dashboard > Template
  • Now find for below code in your template




add below piece of code just above/before of above code.







  • Now save your template and you are done




  • I hope you will like this gadget.



Monday 28 January 2013

Smooth jQuery Multi Level Drop Down Menu For Blogger - V1



How To Add Multi Drop Down Menu To Blogger


  • Go to Blogger Dashboard > Design > Layout. (In new User Interface Dashboard > Layout)
  • Click on add a gadget link just below of Header

Paste below code and save it.

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script><script type="text/javascript" src="http://code.helperblogger.com/hb-smooth-menu.js"></script><script type="text/javascript">ddsmoothmenu.init({ mainmenuid: "smoothmenu1", orientation: 'h', classname: 'ddsmoothmenu', contentsource: "markup" })</script> <style> .ddsmoothmenu { width: 100%; background-image: url(http://4.bp.blogspot.com/-9heg7lW39G0/T8YxHv0LaQI/AAAAAAAAB1E/BKwgK6KrM_0/s1600/menu-bg.png); vertical-align: middle; height: 33px; font-family: Verdana; font-size: 13px; font-weight: bold;} .ddsmoothmenu ul { z-index: 100; margin: 0; padding: 0; list-style-type: none;} .ddsmoothmenu ul li { position: relative; display: inline; float: left;} .ddsmoothmenu ul li a { display: block; color: white; padding: 8px 10px; border-right: 1px solid #778; color: #666666; text-decoration: none; background-image: url(http://4.bp.blogspot.com/-9heg7lW39G0/T8YxHv0LaQI/AAAAAAAAB1E/BKwgK6KrM_0/s1600/menu-bg.png);} * html .ddsmoothmenu ul li a { display: inline-block;} .ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited { color: white;} .ddsmoothmenu ul li a.selected { background: black; color: white;} .ddsmoothmenu ul li a:hover { background: black; color: white;} .ddsmoothmenu ul li ul { position: absolute; left: 0; display: none; visibility: hidden;} .ddsmoothmenu ul li ul li { display: list-item; float: none;} .ddsmoothmenu ul li ul li ul { top: 0;} .ddsmoothmenu ul li ul li a { font: normal 13px Verdana; width: 160px; padding: 5px; margin: 0; border-top-width: 0; border-bottom: 1px solid gray;} * html .ddsmoothmenu { height: 1%;} .downarrowclass { position: absolute; top: 12px; right: 7px;} .rightarrowclass { position: absolute; top: 6px; right: 5px;} .ddshadow { position: absolute; left: 0; top: 0; width: 0; height: 0; background: silver;} .toplevelshadow { opacity: 0.8;} </style> <div id="smoothmenu1" class="ddsmoothmenu"> <ul> <li> <a href="http://www.helperblogger.com/">Home</a> </li> <li> <a href="#">Folder 0</a> <ul> <li> <a href="#">Sub Item 1.1</a> </li> <li> <a href="#">Sub Item 1.2</a> </li> </ul> </li> <li> <a href="#">Folder 1</a> <ul> <li> <a href="#">Sub Item 1.1</a> </li> <li> <a href="#">Sub Item 1.2</a> </li> </ul> </li> <li> <a href="#">Item 3</a> </li> <li> <a href="#">Folder 2</a> <ul> <li> <a href="#">Sub Item 2.1</a> </li> </ul> </li> <li> <a href="http://shirazshakeel.blogspot.com/2013/01/smooth-jquery-multi-level-drop-down.html">Create This</a> </li> </ul> <br style="clear: left" /> <br style="clear: left" /></div>

That's It 

Friday 25 January 2013

Breadcrumbs Navigation Widget For Blogger

Breadcrumb navigation helps your readers to track their position on your blog by showing a breadcrumb trail in this way (Home » Label Name » Post Title).This navigation appears just above of the your post title and the links are a trail from the homepage to post title.There is also option for showing the multiple labels in this navigation i.e. if any post have more than one label then it will show all of them.


Add BreadCrumbs Navigation For Blogger

Go to Blogger Dashboard > Template


  1. Click on Edit HTML
  2. Hit Proceed
  3. Now find below code,


<b:include data='top' name='status-message'/>



just above it copy and paste below code,

<b:include data='posts' name='breadcrumb'/>

Now find below code Tip : (if you find two occurrences of this, then locate the second one)


<b:includable id='main' var='top'>
just above it paste below code,




<!-- Breadcrumb Navigation By www.shirazshakeel.blogspot.com -->
<b:includable id='breadcrumb' var='posts'>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<b:if cond='data:blog.pageType == "static_page"'>
<div class='breadcrumbs'>
 <span><a expr:href='data:blog.homepageUrl' rel='tag'>Home</a></span> » <span><data:blog.pagename/></span>
</div>
<b:else/>
<b:if cond='data:blog.pageType == "item"'>
<!-- breadcrumb for the post page -->
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<div class='breadcrumbs' xmlns:v="http://rdf.data-vocabulary.org/#">
 <span typeof="v:Breadcrumb"><a expr:href='data:blog.homepageUrl' rel="v:url" property="v:title">Home</a></span>
 <b:loop values='data:post.labels' var='label'>
 <b:if cond='data:label.isLast == "true"'>
 » <span typeof="v:Breadcrumb"><a expr:href='data:label.url' rel="v:url" property="v:title"><data:label.name/></a></span>
 </b:if>
 </b:loop>
 » <span><data:post.title/></span>
</div>
<b:else/>
<div class='breadcrumbs'>
 <span><a expr:href='data:blog.homepageUrl' rel='tag'>Home</a></span> » <span>Unlabelled</span> » <span><data:post.title/></span>
</div>
</b:if>
</b:loop>
<b:else/>
<b:if cond='data:blog.pageType == "archive"'>
<!-- breadcrumb for the label archive page and search pages.. -->
<div class='breadcrumbs'>
 <span><a expr:href='data:blog.homepageUrl'>Home</a></span> » <span>Archives for <data:blog.pagename/></span>
</div>
<b:else/>
<b:if cond='data:blog.pageType == "index"'>
<div class='breadcrumbs'>
 <b:if cond='data:blog.pageName == ""'>
 <span><a expr:href='data:blog.homepageUrl'>Home</a></span> » <span>All posts</span>
 <b:else/>
 <span><a expr:href='data:blog.homepageUrl'>Home</a></span> » <span>Posts filed under <data:blog.pagename/></span>
 </b:if>
</div>
</b:if>
</b:if>
</b:if>
</b:if>
</b:if>
</b:includable>
<!-- Breadcrumb Navigation By www.shirazshakeel.blogspot.com -->



This code will only display the last label of the post in the breadcrumb. If you want to display all the labels, then you will have to remove the code in line number 16 and 18.

Now find below code,



]]></b:skin>

add below CSS code just above it,





.breadcrumbs {
background: #F7F7F7;
float: left;
border: 1px solid #E6E6E6;
width: 575px;
font-size: 11px;
margin: 10px 10px 10px 10px;
padding: 5px 10px 5px 10px;
}


Now save your changes and you are done.

Thanks ! ! !

Wednesday 23 January 2013

Fixed Position "Share This" Sharing Bar For Blogger


How To Add Share This Buttons To Blogger





  • Go to Blogger Dashboard > Design > Edit HTML.
  • Now search for



  • add below code just above it.




    Now find for below code in your template,



    add below piece of code just above it




    Now save your template and you are done...

    Related Posts Widget With Image Thumbnail For Blogger


    How To Add Related Posts With Thumbnail For Blogger

    1. Go to Blogger Dashboard > Design > Edit HTML.
    2. Download a copy of your template first.
    3. Tick  "Expand Widget Templates" checkbox.
    4. Now search for below tag in your template


    Just above it paste below code,




    Now search for below code in your template,






    Now place below code snippet just before of above line,



    Now save your template and go to your blog,you will watch this widget just below of your posts.


    Customizations


    • To change the title of widget find the Related Posts in 2nd code.
    • To change the number of posts to display find this var maxresults=5; code in 2nd code.

    Beautiful And Sleek Search Boxes For Blogger

    How To Add Sleek Search Boxes To Blogger

    1. First choose any search box below
    2. Copy the code of that search box
    3. Go to Blogger Dashboard > Layout
    4. Click Add a Gadget
    5. Select HTML/JavaScript
    6. Paste code and save it
    7. Drag it to the top of your siderbar,if you are good blogger :)

    Search Box Style 1








    Search Box Style 2







    Search Box Style 3










    Search Box Style 4








    Search Box Style 5






    I hope you have enjoyed this all search boxes :)

    Peace Buddies :)





    Set Of Beautiful And Fresh Search Boxes For Blogger


    How To Add These Search Boxes To Blogger

    1. First choose any search box below
    2. Copy the code of that search box
    3. Go to Blogger Dashboard > Layout
    4. Click Add a Gadget
    5. Select HTML/JavaScript
    6. Paste code and save it
    7. Drag it to the top of your siderbar,if you are good blogger :)

    Search Box Style 1









    Search Box Style 2








    Search Box Style 3








    Search Box Style 4






    Search Box Style 5









    Finally save your search box and you are done.

    Slide Out Floating Share Buttons For Blogger


    How to Add This Widget









  • Go to Blogger Dashboard > Template
  • Click On Edit HTML
  • Hit Proceed button
  • Find For Below Code,




  • add below code just above it,





    add below code just before/above it,






    Finally save your widget and you are done :)

    Tuesday 22 January 2013

    Adobe Photoshop Cs3 Pc Software

    Adobe Photoshop CS3 Pc Software Download For Only Microsoft O.S


    Information:-

    Adobe Photoshop CS3 Extended is the professional standard in digital imaging, with an endless selection of drawing tools, filters, and color-adjustment capabilities for manipulating items in almost any way. Originally designed for bitmap images, Photoshop lets you create eye-catching typography by placing text on paths or within shapes, perform shadow and highlight correction, explore expanded color-matching features, parley efficient layer comps, and preview,search, and share images. Oh, and it's also the premiere program for managing home digital printing.
    CS3 Extended includes support for rendering and integrating 3D images into 2D composites and video layer editing. There's also a greatly modified help menu to take the edge off your learning curve, with built-in how-to's on Preparing Art for Other Applications, Printing Photos, Working with Color and Type, and more. From simply lightening dark photos to improving color and contrast, to adding objects or people that weren't originally in the picture, Photoshop is an excellent tool whose innovative features meet any professional need.
    Adobe Photoshop CS3 Extended is ideal for film, video, and multimedia professionals and graphic and web designer using 3D and motion, as well as professionals in engineering and science, Adobe Photoshop CS3 Extendedsoftware delivers everything in Photoshop CS3 and more. Render and incorporate 3D images into your 2D composites. Stop time with easy editing of motion graphics on video layers. And probe your images with measurement, analysis, and visualization tools.
    Version CS3 adds smart filters, 2D and 3D measurement tools, and Refine Edge tools.

    Instruction:-


    . Run the SETUP, install takes some time
    2. After installing goes to the Crack Folder and copy "Photoshop" file.
    3. Than go to "C:/program files/adobe Photoshop CS3" and then paste that file.
    Enjoy :-)

    This Is Torrent File


    jQuery Facebook Like Box Popup V2 For Blogger


    Add Facebook Like Box Popup With Timer To Blogger



    1. Go to Blogger Dashboard > Edit HTML
    2. Download a copy of your template
    3. Hit Proceed button
    4. Now find below code in your template





    add below code just above it,




    • Now replace GamesAndSoftwaresAndManyMore with your facebook username
    • You can edit the title of the likebox popup,to change it simply edit the word"Join us at Facebook!"
    • The pop up will disappear after the time which you have set,I have set the time to 15 seconds,you can change it by simply changing the value inkakinetworkdotcom01time="15"
    • The widget appears immediately after a visiter eneters. If you want it to appear after one minute or more then edit wait: 0 in kakinetworkdotcom01wait="0",
    • To change the skin i.e. image in pop up then simply edit thekakinetworkdotcom01skin="02" change 02 with 01,02,03 or 04. Below are some examples of skins

    Skin 1



    Skin 2  


    Skin 3


    Skin 4




    Add CSS3 Bricks/Box Style Labels To Blogger



    How to Customize Blogger Labels With CSS3

    First we have to edit some settings of our label widget.Save your label widget settings as I have set in below image.


    • Now go to Blogger Dashboard > Template

    • Click on Edit HTML
    • Hit Proceed button
    • Check Expand Widget Templates checkbox
    • Find below code in your template
    ]]></b:skin>





    Now find below code,






    find it until





    replace code from <b:widget id='Label1' locked='false'......... 
    to 
    </b:widget> with below code,




    Now take a preview and save your template.

    Hope you have liked it :)

    Thanks