Friday, 12 July 2013

How To Add Drop Down Navigation Menu In Blogger


Drop Down Menu
Previously, I shared a tool by which bloggers can check and correct the grammatical mistakes in their articles and Today I'm going to share the simple drop down navigation menu for blogger. This is important for every blogger to make the navigation easier of their blogs due to several reasons and drop down navigation  menu is an ideal thing for it. In these kind of menus, when someone hovers the mouse cursor on any specific category then it drops some sub categories of it in the vertical style. And due to this effect, it is known as best menu style. Well, before installing this in your blog first let me tell you something about this.

Drop Down Navigation Menu

This is the simple drop down navigation menu which is built with pure HTML, CSS3 and JQuery. It has a gray color because it is user friendly and it will not affect the visitors' eyes. You know some heavy colors like Purple, Blue and Orange affect the visitors' eyes and most web designers use light colors. So this menu shows the vertical sub categories when you'll place the mouse on any drop down menu. It also has a focus or click effect. You can have a look at this by visiting the below demo link.

Tutorial

Tutorial of installing this menu is your blog is just left hand game. Yeah! It is simply easy. So, follow the below given steps and add it.

  1. Go To Blogger >> Layout >> Add a Gadget (In The Header Area)
  2. Choose "HTML/JavaScript"
  3. Paste The Following Code In The Content Box  
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js">
</script>
<script type="text/javascript">  $(function() {    //We initially hide the all dropdown menus    $('#dropdown_nav li').find('.sub_nav').hide();      //When hovering over the main nav link we find the dropdown menu to the corresponding link.    $('#dropdown_nav li').hover(function() {      //Find a child of 'this' with a class of .sub_nav and make the beautyfadeIn.      $(this).find('.sub_nav').fadeIn(100);    }                                , function() {                                  //Do the same again, only fadeOut this time.                                  $(this).find('.sub_nav').fadeOut(50);                                }                               );  }   );</script><style>  #dropdown_nav a { font-family:Arial, Sans-Serif;        font-size:15px;        font-weight:bold;        color:#525252;        text-decoration:none;      }      #dropdown_nav {        width:960px;        padding:0px;        display:inline-block;        list-style:none;        -moz-box-shadow:inset 0px 0px 1px #fff;        -webkit-box-shadow:inset 0px 0px 1px #fff;        border:1px solid #ccc;        -moz-border-radius:5px;        -webkit-border-radius:5px;        background:#e2e2e2;        background:-moz-linear-gradient(#f3f3f3, #e2e2e2);        background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3),to(#e2e2e2));      }          #dropdown_nav li { padding:10px 0px 10px 0px; float:left; position:relative; display:inline-block;      }          #dropdown_nav li a {        padding:10px 15px 10px 15px;        text-shadow:-1px 1px 0px #f6f6f6;        -moz-box-shadow:inset 0px 0px 1px #fff;        -webkit-box-shadow:inset 0px 0px 1px #fff;        border-right:1px solid #ccc;      }      #dropdown_nav li a:hover {        background:#f9f9f9;        background:-moz-linear-gradient(#f9f9f9, #e8e8e8);        background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9),to(#e8e8e8));      }      #dropdown_nav li a:active {        background:#e2e2e2;        background:-moz-linear-gradient(#e2e2e2, #f3f3f3);        background:-webkit-gradient(linear, 0 0, 0 100%, from(#e2e2e2),to(#f3f3f3));      }          #dropdown_nav li a.first {        -moz-border-radius:5px 0px 0px 5px;        -webkit-border-radius:5px 0px 0px 5px;      }      /*#dropdown_nav li a.last {      -moz-border-radius:0px 5px 5px 0px;      -webkit-border-radius:0px 5px 5px 0px;    }      */          /* Sub-Nav styling */      #dropdown_nav .sub_nav {        width:160px;        padding:0px;        position:absolute;        top:38px;        left:0px;        border:1px solid #ccc;        background:#e2e2e2;      }          #dropdown_nav .sub_nav li {        width:160px;        padding:0px;      }          #dropdown_nav .sub_nav li a {        display:block;        border-bottom:1px solid #ccc;        background:-moz-linear-gradient(#f3f3f3, #e2e2e2);        background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3),to(#e2e2e2));      }      #dropdown_nav .sub_nav li a:hover {        background:#f9f9f9;        background:-moz-linear-gradient(#f9f9f9, #e8e8e8);        background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9),to(#e8e8e8));      }      #dropdown_nav .sub_nav li a:active {        background:#e2e2e2;        background:-moz-linear-gradient(#e2e2e2, #f3f3f3);        background:-webkit-gradient(linear, 0 0, 0 100%, from(#e2e2e2),to(#f3f3f3));      }</style><!-- Navigation Start --><ul id="dropdown_nav"> <li><a class="first" href="http://www.mybloggerskill.blogspot.in/">Home</a></li> <li><a href="#">Tutorials</a> <ul class="sub_nav"> <li><a href="#">Photoshop #1</a></li> <li><a href="#">Photoshop #2</a></li> <li><a href="#">Photoshop #3</a></li> <li><a href="#">Photoshop #4</a></li> <li><a href="#">Photoshop #5</a></li> <li><a href="#">Photoshop #6</a></li> <li><a href="#">Photoshop #7</a></li> </ul> </li> <li><a href="#">Artciles</a> <ul class="sub_nav"> <li><a href="#">Announcements #1</a></li> <li><a href="#">Announcements #2</a></li> <li><a href="#">Announcements #3</a></li> <li><a href="#">Announcements #4</a></li> </ul> </li> <li><a href="#">Freebies</a> </li> <li><a class="last" href="#">Other Stuff</a> <ul class="sub_nav"> <li><a href="#">Other Stuff #1</a></li> <li><a href="#">Other Stuff #2</a></li> <li><a href="#">Other Stuff #3</a></li> <li><a href="#">Other Stuff #4</a></li> </ul> </li> </ul>
  1. Replace Yellow Highlighted Characters With Links
  2. Replace Green Highlighted Characters With Link Text
  3. Click "Save" Button
  4. That's All!

Need Help?

This was the little tutorial with cute menu and I hope you all liked it. Facing any problem? Feel free to ask in the comment area. I'm here to help you anytime. Ramadan Mubarak to all my Muslim brothers and sisters and be in touch with us for more. Take Care. Happy Blogging and Happy Ramadan!

How TO HaCK facebook password with software

Everyday I get emails wherein my readers ask me How to Hack a Facebook Account? You as the reader are most likely reading this because you want to hack into someone’s facebook account. So in this post I have decided to uncover the real and working way to hack any facebook account. Actually there are many ways to hack someones facebook password likePhishingKeylogging or using Hacking softwaresused to hack facebook password. In this post i'm going to show you how to hack someones facebook account password using a keylogger - Emissary Keylogger.

How to Hack Facebook Password using Keylogger?
(To ExTrACT ur Files U must disable the antivirus

1. First of all Download Emissary Keylogger and run fb hacking tool(run as adminstrator. It takes screenshots of the victim's computer and sends it to your gmail along with the logs.

2. Make sure that you have Microsoft .Net Framework installed in your Windows. You can download it fromwww.microsoft.com/net/. Else it won't work.

3. Extract the files using WinRar or any other zip/unzip program.

4. Open "Emissary.exe" to see something like this:

notE-run fb hacking by runing as adminstrator






5. Now, fill in your Gmail username and password in respective fields (You can create a gmail account that you're going to use only for keylogging). Enter the email adress where you wanna receive facebook passwords. Choose a name for the server.exe file. You can set timer as you wish. This timer controls the time interval between two logs emails.

6. In the "Options" section you can see what this evil little buddy can do ;)


  • Block AV Sites: Blocks VirusScanning Websites on victim's computer
  • Add to Startup: Adds to Startup via Registry
  • Antis: Anubis, BitDefender, Kaspersky, Keyscrambler, Malwarebytes, NOD32, Norman, Ollydbg, Outpost, Wireshark
  • Disable TaskManager: Disable TaskManager on victim's PC
  • Disable Regedit: Disable's Regedit on victim's PC 


  • 7. Check "Trojan Downloader" to Downloade and Execute a trojan on victim's PC. You can also create a fake error message and scare your victim, like:




8. After you're done, hit on "Build" and you will get server keylogger file created in current directory.

9. Now, to hack facebook password, you have to send this server file to victim and make him install it on his computer. You can use BinderCrypter or Fake Hacking Software to bind this server file with say any .mp3 file so that whenever victim runs mp3 file, server is automatically installed on his computer without his knowledge.

10. Now because this is a server.exe file you can't send it via email. Almost all email domains have security policy which does not allow sending .exe files. So to do this you need to compress the file with WinRar or upload it to Free File Storage Domains, like Mediafire, Speedyshare, Ziddu.com, etc.

11. Once the victim runs our sent keylogger file on his computer, it searches for all stored passwords and send you email containing all user-ids and passwords, like:


  Now you have all victim email passwords in your inbox and you can now hack victim facebook accounts easily. I have personally tested this free keylogger and found it working 100%. Enjoy Hacking.

Add me on fb-ASHISH roX 

Friday, 5 July 2013

How to root Micromax Canvas HD


Rooting your device will help you to unleash the power and customization capability on your Android device. In this article we are going to cover a detailed tutorial on how to root the Micromax Canvas HD, so that you can enjoy the various goodies available on a rooted Android device.
The benefits of rooting include ability to run a custom ROM, run rooted apps, flash themes, install tweaks and hoards of other benefits.

Prerequisites

1. Micromax Canvas HD

2. Micromax Drivers

3. SP Flash tool

4. Root Zip file

5. Patience (The main thing) :P
Download all the required files from here or here



Warning: Rooting will void warranty. However, to claim back your warranty you can flash Stock ROM again. Proceed at your own risk.

Begin the rooting process

Install Clockwork Mod Recovery
1. Have fun custom Install the Micromax Drivers from the download files.

2. Unpack Stock ROM folder.

3. Replace recovery.img with the CWM recovery img file.

4. Open the downloaded SP Flash Tool, click on Scatter-Loading and the program will ask you the location of the scatter loading file for your device.

5. In the extracted folder of the stock rom, go to the folder named “S9201_MP_F4_B1_IN_MMX_0.16_flasher_user” and select the file “MT6589_Android_scatter_emmc” which is our scatter loading file.

6. Check only recovery.img, pre loader and uncheck all others.

7. Power off your device. Pull out battery to ensure this.

8. In Flash Tool, go to Options and Click USB Mode so that it is enabled. Click options again and then go to DA Download All > Speed and finally select High Speed.

9. Click the Download option (present on the right of Firmware > Upgrade option) and the flash tool will start looking for your phone.

10. Connect your phone now. The Flash Tool will start the flashing process, the progress of which can be viewed from a yellow progress bar at the bottom of the flash tool.

[Do not interrupt or halt this since it can brick your device and render it unusable.]
Once the process is successful, a green ring will appear on your device.

 Root Micromax Canvas HD

1. Start your phone normally. Place the root zip file on your external SD card.

2. Hold Volume Up + Volume Down + Power buttons till you see a screen which says press Volume Up for Recovery. Press Volume Up and enter Recovery.

3. Use Volume Up and Down buttons to navigate to ‘install zip from zip card ‘and press the   Power button to select it.

4. Now select ‘choose zip from SD card.

5. Navigate to Superuser-3.1.3-arm-signed.zip you copied above and press Power to select it.

6. Navigate to ‘Yes – install Superuser-3.1.3-arm-signed.zip and press Power button to start flashing

7. Go back to main menu.

8. Follow Steps 4 to 8 but select ‘su-bin-3.1.1-arm-signed.zip’ this time. 

9. Finally, select reboot system now.

This process will root your device. Reboot!
Congratulations! You’re Micromax Canvas HD is now rooted! Have fun customizing it and running root applications! :)

Adobe Photoshop CS7 Free Download Full Version + Serial Key

Adobe Photoshop CS7.0  Free Download Full Version + Serial Key - invariably most suitable option for skilled image written material. And with the new options and enhancements that are enforced in version seven, its attractiveness is currently stronger than ever. to explain Photoshop as simply a picture written material application doesn't do that package justice, because it will do way more than that. for instance it's nearly equally reception serving to you style and make entire sites and print adverts because it is at enhancing, re-touching or written material pictures and alternative digital pictures.

Photoshop CS7.0 image written material and enhancing facilities have conjointly improved. you will currently realize it even easier to mechanically correct colors in an exceedingly photograph, for instance, and due to some additions and tweaks in its Liquify facility, you will find creating exactness distortions or adding bound styles of effect AN absolute cinch. 2 utterly new picture enhancing tools have conjointly been intercalary to Photoshop seven, the healing brush and patch tool - that along create invisibly removing blemishes, scratches, hour and wrinkles from scanned pictures a pleasure instead of a duty.

The new change palette makes it way easier to form, edit and manage rollovers and image maps than was the case in previous versions of the package. However, it's still approximately as simple or intuitive as performing arts constant tasks with arch-rival Macromedia's Fireworks Web-specific image manipulation package. some a lot of general enhancements to Adobe Photoshop seven are warrant note albeit shortly - like the marginally a lot of fashionable look to its program, support for Adobe athlete 5's security settings and, last however by no suggests that least, a intrinsic  bilingual spell checker.

File name
Adobe Photoshop CS7.0
File size
175.08 MB
OS
Microsoft Windows XP/vista/7/8
CPU
Pantium IV
Ram
1 GB
Free Disk Space
1 GB
Download From

Adobe Photoshop Serial Key:
1045-1209-6738-4668-7696-2783


Download From MediaFire
Adobe Photoshop CS7.0 Free Download Full Version

Rar Pass: www.freewarelatest.com

Wednesday, 3 July 2013

Using jQuery Autocomplete Widget

The Autocomplete widgets provides suggestions while you type into the field. It's a great way to create search, tags or category form on your niche blog. You can also create some cool forms with this UI. In this tutorial, I'll show how to easily use this autocomplete widget.

1. Create A New Document:

It's a beginner's tutorial so, I'll explain in some very easy language, not going to use all those crappy words. Create a new HTML document, below is basic page structure:


2. Adding jQuery Script And CSS: Now we'll add magical jQuery script and jQuery UI's stylesheet. Just add following code between your ... in your document:

Tuesday, 2 July 2013

Shareaholic Sexy Bookmarks Widget For Blogger ♥


  • Go to Blogger Dashboard > Design > Edit HTML. (In new user interface Dashboard > Template)
  • First download a copy of your template
  • Now find ]]></b:skin> in your template
  • Add the code given below  just above  ]]></b:skin>  -
div.shr-bookmarks{margin:20px 0 8px;clear:both !important;display:block !important}div.shr-bookmarks ul.shr-socials{width:100% !important;margin:0 !important;padding:0 !important;float:left !important}div.shr-bookmarks ul.shr-socials{background:transparent none !important;border:0 none !important;outline:0 none !important}div.shr-bookmarks ul.shr-socials li{display:inline !important;float:left !important;list-style-type:none !important;padding:0 !important;height:29px !important;width:60px !important;cursor:pointer !important;margin:3px 0 0 !important;background-color:transparent !important;border:0 none !important;outline:0 none !important;clear:none !important}div.shr-bookmarks ul.shr-socials li:before,div.shr-bookmarks ul.shr-socials li:after,div.shr-bookmarks ul.shr-socials li a:before,div.shr-bookmarks ul.shr-socials li a:after{content:'' !important;}div.shr-bookmarks ul.shr-socials a,div.shr-bookmarks ul.shr-socials a:hover{display:block !important;width:60px !important;height:29px !important;text-indent:-9999px !important;background-color:transparent !important;text-decoration:none !important;border:0 none !important}div.shr-bookmarks ul.shr-socials a:hover,div.shr-bookmarks ul.shr-socials li:hover{background-color:transparent !important;border:0 none !important;outline:0 none !important}.shareaholic-show-on-load{display: block !important;}div.shr-bookmarks div.shr-getshr{line-height:20px !important;padding-left:8px !important;float:left !important;}div.shr-bookmarks div.shr-getshr a{width:auto !important;font-size:10px !important; text-indent:0px !important;text-decoration:none !important;}div.shr-count{font:12px bold,arial !important;position: relative !important;}div.shr-count-outline{position: absolute !important;color: white !important;}div.shr-count-center{position: absolute !important;color: blue !important;}li.shr-2{background-position:-120px bottom !important}li.shr-2:hover{background-position:-120px top !important}li.shr-3{background-position:-180px bottom !important}li.shr-3:hover{background-position:-180px top !important}li.shr-5{background-position:-300px bottom !important}li.shr-5:hover{background-position:-300px top !important}li.shr-7{background-position:-420px bottom !important}li.shr-7:hover{background-position:-420px top !important}li.shr-10{background-position:-600px bottom !important}li.shr-10:hover{background-position:-600px top !important}li.shr-38{background-position:-2280px bottom !important}li.shr-38:hover{background-position:-2280px top !important}li.shr-40{background-position:-2400px bottom !important}li.shr-40:hover{background-position:-2400px top !important}li.shr-43{background-position:-2580px bottom !important}li.shr-43:hover{background-position:-2580px top !important}li.shr-52{background-position:-3120px bottom !important}li.shr-52:hover{background-position:-3120px top !important}li.shr-74{background-position:-4440px bottom !important}li.shr-74:hover{background-position:-4440px top !important}li.shr-88{background-position:-5280px bottom !important}li.shr-88:hover{background-position:-5280px top !important}li.shr-106{background-position:-6360px bottom !important}li.shr-106:hover{background-position:-6360px top !important}li.shr-201{background-position:-12060px bottom !important}li.shr-201:hover{background-position:-12060px top !important}li.shr-219{background-position:-13140px bottom !important}li.shr-219:hover{background-position:-13140px top !important}

  • Now check  Expand Widget Templates and  find :
<div class='post-footer'>
  • And paste code given below just below <div class='post-footer'> :
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div class='shr_class shareaholic-show-on-load'>
</div>
<script type='text/javascript'>
var SHRSB_Settings = {&quot;shr_class&quot;:{&quot;src&quot;:&quot;http://www.shareaholic.com/media/css/styles/sb&quot;,&quot;link&quot;:&quot;&quot;,&quot;service&quot;:&quot;5,7,2,38,3,219,43,52,201,88,74,10,106,45,40,210,78,39&quot;,&quot;apikey&quot;:&quot;6ffe2cbf142c45bd4cd03b01ec46b8658&quot;,&quot;localize&quot;:true,&quot;shortener&quot;:&quot;google&quot;,&quot;shortener_key&quot;:&quot;&quot;,&quot;designer_toolTips&quot;:true,&quot;twitter_template&quot;:&quot;Some fancy post title - http://goo.gl/dbqlx via @****&quot;}};
</script>
<script type='text/javascript'>
(function() {
var sb = document.createElement(&quot;script&quot;); sb.type = &quot;text/javascript&quot;;sb.async = true;
sb.src = (&quot;https:&quot; == document.location.protocol ? &quot;https://dtym7iokkjlif.cloudfront.net&quot; : &quot;http://cdn.shareaholic.com&quot;) + &quot;/media/js/jquery.shareaholic-publishers-sb.min.js&quot;;
var s = document.getElementsByTagName(&quot;script&quot;)[0]; s.parentNode.insertBefore(sb, s);
})();
</script><a href='http://mybloggerskill.blogspot.com/2013/07/socialwidget.html' target='_blank'>Social Bookmarking Gadget</a></b:if>

  • Replace ****with your twitter username.
  • Now save your template and you are done..