Showing posts with label add. Show all posts
Showing posts with label add. Show all posts
Sunday, November 27, 2016
How to Add Gadgets to Bloggers Mobile View
How to Add Gadgets to Bloggers Mobile View

Here on this tutorial, I will show you how you can customize the defaults widgets and add gadgets to your mobile site. Here are the default widgets on your mobile site:
- Header
- Blog
- Adsense
- PageList
- Profile
- Attribution
Other property attributes include, no, yes, and only
If you want to hide a widget on the mobile site, just add the property mobile= with the attribute no to its widget tag (example: mobile=no)
You will need to first of all change your mobile view to custom. Go to the Template page of your blogspot account click the settings for the mobile view. Set to Yes. Show mobile template on mobile devices. Choose mobile template and select custom then save. Check the picture below for guidiance


Now lets try to hide the profile widget otherwise gadget from showing on your mobile site.
This is the original code for the Profile widget tag:
<b:widget id=Profile1 locked=false title=contributors type=Profile>
To hide it from showing in the mobile view add the attribute mobile=no to its widget tag
<b:widget id=Profile1 locked=false mobile=no title=contributors type=Profile>
Save your template and preview it with a phone.
You can do this for any widget you want to view on mobile. Insert yes after mobile= to enable the gadget show the mobile view. Add only to enable the gadget for mobile view only. You can ask questions by leaving a comment if you need help and please help us click the facebook share and twitter tweet button to share this post by saying thank you. God bless yall
Go to link Download
Friday, November 25, 2016
How to Add a PIN to Your Windows 10 Account
How to Add a PIN to Your Windows 10 Account
| Windows 10 Pin |
You can enter a numeric PIN, or follow an example of motions on a photo, or with fitting equipment you can even utilize Windows Hello a biometric sign-in system that sweeps your unique mark, your face, or your iris. In this article, well demonstrate to you proper methodologies to add a PIN to your record in Windows 10.
Why Using a PIN is a Better Option
On the off chance that a secret word is bargained somehow, the individual who has entered the framework may have entry to all stages that are connected to that watchword. Then again, if a PIN is traded off, they can utilize it just on that gadget; they cant utilize it to sign into your record on some other gadget.
Likewise, the individual must be physically present so as to enter the PIN, and this is not the same with a secret key. On the off chance that somebody takes your PC they cant sign in unless they know your PIN. Likewise, remember that the PIN login highlight is fundamental on the off chance that you need to exploit extra security highlights accessible in Windows 10, for example, Windows Hello, the iris peruser, or a unique finger impression scanner.
Furthermore, obviously, a PIN is much less demanding to enter on a touchscreen gadget like the Surface tablet.
Add a PIN to Your Account
Open the "Settings" application, and snap/tap on the "Records" symbol. Snap/tap on "Sign-in choices" on the left side, and snap/tap on the "Include" catch under "PIN" on the right side.
On the off chance that incited to check your record secret key, enter your neighborhood account watchword and snap/tap on "alright".
On the off chance that you have a Microsoft account, then enter your Microsoft account secret key and snap/tap on "Sign in". Subsequent to entering your secret key to affirm your character, enter the numbers in a dialog box. The base length is four digits (09 just; no letters or exceptional characters permitted), yet your PIN can be the length of you need. On the off chance that you have to check what youve set as of right now then select the symbol to the right half of the dialog box. This will quickly uncover the number youve entered.
The main criteria for picking a PIN is that it must be no less than four digits in length. There are no impediments on most extreme length or intricacy. Here are a few contemplations before you pick a PIN:
Utilizing more digits will make the PIN harder to figure yet ensure you can enter the PIN rapidly and precisely, generally theres little advantage over simply utilizing a secret key.
Utilizing a straightforward PIN (0000, 0123, 1111, etc) will make it simple to figure; pick arbitrary numbers.
Reusing PINs from your ledgers or charge card number ought to be maintained a strategic distance from. Likewise, abstain from utilizing the same PIN on distinctive gadgets.
Change the PIN for Your Account
Open the "Settings" application, and snap/tap on the "Records" symbol. Snap/tap on "Sign-in choices" on the left side, and snap/tap on the "Change" catch under "PIN" on the right side.
Enter your present PIN at the top, enter another PIN and snap/tap "alright".
In the event that you cant sign into Windows 10 with your PIN, youll be offered a connection that says "Sign-in choices." When you pick that, youre offered the greater part of the sign-in alternatives youve made in this way: picture watchword, PIN, Windows Hello, and consistent secret word.
Reset the PIN for Your Account
Open the "Settings" application, and snap/tap on the "Records" symbol. Snap/tap on "Sign-in alternatives" on the left side, and snap/tap on the "I overlooked my PIN" join under "PIN" on the right side.
Confirm your record watchword, and continue setting up another PIN. Keep in mind, in the event that you boot to Safe mode, youll have the capacity to sign in with your watchword, and not with some other sign-in choices. Closing this article, its very simple to setup a PIN and on the off chance that youve not yet empowered it on your gadget, do it
Go to link Download
How to add Contact form on Blogger Change Style Install it on Static Pages
How to add Contact form on Blogger Change Style Install it on Static Pages
While going through various widgets on blogger dashboard i came across a must use widget that everybody on the bloggersphere network should use on his/her blogsite, which is the contact form.
?
?
| By Egbo Harold |
The contact form for Blogger has the following features:
- Field for the user name
- Field for email
- Submit Button
- Field for the message (text-area)
Screenshot
How to Add Contact Form to Blogger
To add it to your blog, just select the Layout tab, then click on Add a gadget in the section you want to show, for example, if is in the sidebar you want to add the contact form. Then, select the More gadgets tab and add the Contact Form gadget.Styling Contact Form
As the background is transparent, the form will integrate well, but its easy to modify using Style Sheets (CSS) to the appropriate selectors. Heres an example:
/* Contact Form Container */
.contact-form-widget {
width: 500px;
max-width: 100%;
margin: 0 auto;
padding: 10px;
background: #F8F8F8;
color: #000;
border: 1px solid #C1C1C1;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}
/* Fields and submit button */
.contact-form-name, .contact-form-email, .contact-form-email-message {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
}
/* Submit button style */
.contact-form-button-submit {
border-color: #C1C1C1;
background: #E3E3E3;
color: #585858;
width: 20%;
max-width: 20%;
margin-bottom: 10px;
}
/* Submit button on mouseover */
.contact-form-button-submit:hover{
background: #4C8EF9;
color: #ffffff;
border: 1px solid #FAFAFA;
}
.contact-form-widget {
width: 500px;
max-width: 100%;
margin: 0 auto;
padding: 10px;
background: #F8F8F8;
color: #000;
border: 1px solid #C1C1C1;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}
/* Fields and submit button */
.contact-form-name, .contact-form-email, .contact-form-email-message {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
}
/* Submit button style */
.contact-form-button-submit {
border-color: #C1C1C1;
background: #E3E3E3;
color: #585858;
width: 20%;
max-width: 20%;
margin-bottom: 10px;
}
/* Submit button on mouseover */
.contact-form-button-submit:hover{
background: #4C8EF9;
color: #ffffff;
border: 1px solid #FAFAFA;
}
This is how it will look like after applying the style:
To add this style, go to Template > Edit HTML, click on the sideways arrow next to <b:skin>...</b:skin> and paste the code just above ]]></b:skin> (press CTRL + F to find it):
How To Add Contact Form In A Static Page
First step is to add the Contact Form gadget (Layout) and second, to edit the template (Template > Edit HTML) to remove most of the gadget. You have to search for the id "ContactForm", expand the widget by clicking on the black arrow on the left (same with the includable) and then delete the part that I have colored in red (see below):
Part to be removed:
<b:widget id=ContactForm1 locked=false title=Contact Form type=ContactForm>
<b:includable id=main>
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=contact-form-widget>
<div class=form>
<form name=contact-form>
<p/>
<data:contactFormNameMsg/>
<br/>
<input class=contact-form-name expr_id=data:widget.instanceId + "_contact-form-name" name=name size=30 type=text value=/>
<p/>
<data:contactFormEmailMsg/> <span style=font-weight: bolder;>*</span>
<br/>
<input class=contact-form-email expr_id=data:widget.instanceId + "_contact-form-email" name=email size=30 type=text value=/>
<p/>
<data:contactFormMessageMsg/> <span style=font-weight: bolder;>*</span>
<br/>
<textarea class=contact-form-email-message cols=25 expr_id=data:widget.instanceId + "_contact-form-email-message" name=email-message rows=5/>
<p/>
<input class=contact-form-button contact-form-button-submit expr_id=data:widget.instanceId + "_contact-form-submit" expr_value=data:contactFormSendMsg type=button/>
<p/>
<div style=text-align: center; max-width: 222px; width: 100%>
<p class=contact-form-error-message expr_id=data:widget.instanceId + "_contact-form-error-message"/>
<p class=contact-form-success-message expr_id=data:widget.instanceId + "_contact-form-success-message"/>
</div>
</form>
</div>
</div>
<b:include name=quickedit/>
</b:includable>
</b:widget>
<b:includable id=main>
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=contact-form-widget>
<div class=form>
<form name=contact-form>
<p/>
<data:contactFormNameMsg/>
<br/>
<input class=contact-form-name expr_id=data:widget.instanceId + "_contact-form-name" name=name size=30 type=text value=/>
<p/>
<data:contactFormEmailMsg/> <span style=font-weight: bolder;>*</span>
<br/>
<input class=contact-form-email expr_id=data:widget.instanceId + "_contact-form-email" name=email size=30 type=text value=/>
<p/>
<data:contactFormMessageMsg/> <span style=font-weight: bolder;>*</span>
<br/>
<textarea class=contact-form-email-message cols=25 expr_id=data:widget.instanceId + "_contact-form-email-message" name=email-message rows=5/>
<p/>
<input class=contact-form-button contact-form-button-submit expr_id=data:widget.instanceId + "_contact-form-submit" expr_value=data:contactFormSendMsg type=button/>
<p/>
<div style=text-align: center; max-width: 222px; width: 100%>
<p class=contact-form-error-message expr_id=data:widget.instanceId + "_contact-form-error-message"/>
<p class=contact-form-success-message expr_id=data:widget.instanceId + "_contact-form-success-message"/>
</div>
</form>
</div>
</div>
<b:include name=quickedit/>
</b:includable>
</b:widget>
After you have saved the template, go to Pages and paste the following code into a new blank page with the title you want:
<div class=widget ContactForm id=ContactForm1>
<div class=contact-form-widget>
<div class=form>
<form name=contact-form>
<p>Name<p>
<input class=contact-form-name id=ContactForm1_contact-form-name name=name size=30 type=text value=/>
<p>E-mail *</p>
<input class=contact-form-email id=ContactForm1_contact-form-email name=email size=30 type=text value=/>
<p>Message *</p>
<textarea class=contact-form-email-message cols=25 id=ContactForm1_contact-form-email-message name=email-message rows=5></textarea>
<input class=contact-form-button contact-form-button-submit id=ContactForm1_contact-form-submit type=button value=Submit/>
<p class=contact-form-error-message id=ContactForm1_contact-form-error-message></p>
<p class=contact-form-success-message id=ContactForm1_contact-form-success-message></p>
</form>
</div>
</div>
</div>
<div class=contact-form-widget>
<div class=form>
<form name=contact-form>
<p>Name<p>
<input class=contact-form-name id=ContactForm1_contact-form-name name=name size=30 type=text value=/>
<p>E-mail *</p>
<input class=contact-form-email id=ContactForm1_contact-form-email name=email size=30 type=text value=/>
<p>Message *</p>
<textarea class=contact-form-email-message cols=25 id=ContactForm1_contact-form-email-message name=email-message rows=5></textarea>
<input class=contact-form-button contact-form-button-submit id=ContactForm1_contact-form-submit type=button value=Submit/>
<p class=contact-form-error-message id=ContactForm1_contact-form-error-message></p>
<p class=contact-form-success-message id=ContactForm1_contact-form-success-message></p>
</form>
</div>
</div>
</div>
Messages will be sent to the same email that you have registered in Blogger.
Hope you enjoyed this tutorial? Please, use the share buttons and make sure you drop a comment below so i can know if my little tutorial helped or not.Thanks for stopping by!
Go to link Download
Friday, November 18, 2016
How to Add a Shutdown Button to Windows 8 Start Screen
How to Add a Shutdown Button to Windows 8 Start Screen
Basically windows 8 is a new windows with new features. most people that are new to windows find it hard to shutdown saying they do not know where the shutdown buttons is!In todays tutorial, we will be showing you how to add shutdown buttons to windows 8 start screen

THATS ALL...

How to Add a Shutdown Button to Windows 8 Start Screen
(1) First of all launch Notepad. This can be done by pressing Win Key+R which will call up the run dialogue box and then type notepad and hit enter. Or you can even search for notepad from the start screen and then launch it.
- See more at: http://www.alltechbuzz.net/2012/12/add-shutdown-reboot-buttons-windows-8.html#sthash.6JgoeaUg.dpuf
- See more at: http://www.alltechbuzz.net/2012/12/add-shutdown-reboot-buttons-windows-8.html#sthash.6JgoeaUg.dpuf
1. First of all launch Notepad. This can be done by pressing Win Key+W. then click on Apps and then type NOTEPAD in the search box
2. Then copy and paste the below given text to notepad.
set WshShell = WScript.CreateObject("WScript.Shell")
strStartMenu = WshShell.SpecialFolders("StartMenu")
set oShellLink = WshShell.CreateShortcut(strStartMenu & "Shutdown.lnk")
oShellLink.TargetPath = "%systemroot%System32shutdown.exe"
oShellLink.Arguments = "-s -t 0"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%System32shell32.dll,27"
oShellLink.Description = "Shutdown Computer (Power Off)"
oShellLink.WorkingDirectory = "%systemroot%System32"
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & "Log Off.lnk")
oShellLink.TargetPath = "%systemroot%System32shutdown.exe"
oShellLink.Arguments = "-l"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%System32shell32.dll,44"
oShellLink.Description = "Log Off (Switch User)"
oShellLink.WorkingDirectory = "%systemroot%System32"
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & "Restart.lnk")
oShellLink.TargetPath = "%systemroot%System32shutdown.exe"
oShellLink.Arguments = "-r -t 0"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%System32shell32.dll,176"
oShellLink.Description = "Restart Computer (Reboot)"
oShellLink.WorkingDirectory = "%systemroot%System32"
oShellLink.Save
Set oShellLink = Nothing
Wscript.Echo "Created Shutdown, Restart and Log Off buttons"
(3) Now click on the Save As option in the File menu and in the File name enter Shutdown.vbs Dont forget to enter .vbs
(4) Next in the file type, select All files and click on the Save option.
(5) Then switch to the location where you saved the file and run the file once. The file will open for a second and then will automatically disappear.
(6) Now switch to the Start Screen and Voilla. You will see that the Tiles of Shutdown, Restart and Log Off have been automatically pinned there and now with one click you can Shutdown or restart your system.
set WshShell = WScript.CreateObject("WScript.Shell")
strStartMenu = WshShell.SpecialFolders("StartMenu")
set oShellLink = WshShell.CreateShortcut(strStartMenu & "Shutdown.lnk")
oShellLink.TargetPath = "%systemroot%System32shutdown.exe"
oShellLink.Arguments = "-s -t 0"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%System32shell32.dll,27"
oShellLink.Description = "Shutdown Computer (Power Off)"
oShellLink.WorkingDirectory = "%systemroot%System32"
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & "Log Off.lnk")
oShellLink.TargetPath = "%systemroot%System32shutdown.exe"
oShellLink.Arguments = "-l"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%System32shell32.dll,44"
oShellLink.Description = "Log Off (Switch User)"
oShellLink.WorkingDirectory = "%systemroot%System32"
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & "Restart.lnk")
oShellLink.TargetPath = "%systemroot%System32shutdown.exe"
oShellLink.Arguments = "-r -t 0"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%systemroot%System32shell32.dll,176"
oShellLink.Description = "Restart Computer (Reboot)"
oShellLink.WorkingDirectory = "%systemroot%System32"
oShellLink.Save
Set oShellLink = Nothing
Wscript.Echo "Created Shutdown, Restart and Log Off buttons"
(3) Now click on the Save As option in the File menu and in the File name enter Shutdown.vbs Dont forget to enter .vbs
(4) Next in the file type, select All files and click on the Save option.
(5) Then switch to the location where you saved the file and run the file once. The file will open for a second and then will automatically disappear.
(6) Now switch to the Start Screen and Voilla. You will see that the Tiles of Shutdown, Restart and Log Off have been automatically pinned there and now with one click you can Shutdown or restart your system.
THATS ALL...
Then copy and paste the below given text to notepad. - See more at: http://www.alltechbuzz.net/2012/12/add-shutdown-reboot-buttons-windows-8.html#sthash.6JgoeaUg.dpu
Go to link Download
How to ADD Sharing Buttons in Blogger Blogspot Horizontal Vertical Buttons
How to ADD Sharing Buttons in Blogger Blogspot Horizontal Vertical Buttons

ADD Sharing Buttons in Blog
Is social media is helpful for blogger in sense of getting traffic.Answer is yes.Its really helpful scenario to get traffic from social media.But question is How to use social media to get traffic on your blog.Simply by post sharing on social media like facebook,twitter,linkedin,stumble upon etc.Its my own personal experience that facebook ,stumbleupon and pinterest are those social media which boost your blog traffic in real sense.Sharing post in Google+ communities boost your blog in UK,USA etc.Next question is how we can share our blog post.It seem too much time consuming.Yeah its all right,but I am sharing with you social sharing widget instead, which provide you quick way to share your post.Todays tutorial is realed to add floating social sharing buttons widgets on blogs.This widget provide you 800+ social sharing buttons to embed on your blog.So,without any delay lets move to learn how to add marvellous social sharing buttons widgets for blogger.How to add social sharing buttons?
It is very simple and easy to add this widget like others widget, We have posted in blogger tutorial category.There are many methods you will find but all are not work.I am sharing with you most active method to add 800+ sharing buttons which will work definitely.So,follow given below steps.Steps:
1. Sign into blogger.com2. Go to >>blogger dashboard>>Layout.
3. In layout tab go to >> add a gadget.
4. A drop down menu bar will appear.Click on HTML Java script.
.png)
5. Copy below code and paste it in HTML Java script box.
.png)
<div class="addthis_toolbox addthis_floating_style addthis_counter_style" style="left:120px;top:200px;">
<a class="addthis_button_facebook_like" fb:like:layout="box_count"></a>
<a class="addthis_button_tweet" tw_count="vertical"></a>
<a class="addthis_button_google_plusone" g:plusone:size="tall"></a>
<a class="addthis_counter"></a>
<a href=http://www.anzaq.com/2013/12/sharing-buttons-blogger.htmll rel=nofollow target=_blank style=color:#cbc6c9;>Widgets</a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-516ff8e04b04378b"></script>
6. Click on save.You have done.Now view your blog.You will find floating social sharing buttons widget on your blog as like below.

By Editorial Desk:
Social sharing buttons amazingly helps to get traffic on blog in real sense.So,do not more delay to add this marvellous blogger widget on blog and enjoy its benefits.If you have any problem regarding social sharing widgets you may ask by leaving your precious comments.Stay update by our new tutorial.
Go to link Download
Thursday, November 17, 2016
How to Add jQuery Nivo Slider to Blogger Blog
How to Add jQuery Nivo Slider to Blogger Blog
Many of way2blogging readers requesting a awesome and easy to use image slider. before i given a simple jquery slider, which is something difficult to add slides and use. Today i am giving the Worlds most awesome jQuery slider. which is jQuery Nivo Slider. jQuery Nivo Slider is free to use and it is offering great setting options to customize your slider, and it is very easy to use with my Widget Generators.
Nivo Slider Features
16 unique transition effects
Simple clean & valid markup
Loads of settings to tweak
Built in directional and control navigation
Packed version only weighs 12kb
Supports linking images
Keyboard Navigation
HTML Captions
3 Slick Themes
Free to use and abuse under the MIT license
For more Information Visit the Nivo Slider website
Preview
Watch Live Preview
How to Install jQuery Nivo Slider in Blogger?
Here are the Two simple steps to add the Nivo Slider to your Blog.
Please keep in mind, All the Slide images widths and Heights Should be Same, and those are match with the Slider Script Width and Height.
For Example:- I taken the Width and Height as 640px and 300px Respectively. Then all my Slide images width and Height MUST be 640px x 300px. Then only Slider works AWESOME!. :D
Installing the Nivo Slider Script
Here is the Generator for the Nivo Slider Script.
Just Customize the settings as your need and Generate the Code.
Copy the Nivo Slider Script and paste it before </head>
Generate Script
Adding Nivo Slider
Here is another Nivo Slider Slides Generator.
Add any Number of Slides and insert the Valid Image URL(required) into each Slide.
You have the options to add the links and Captions to each slide, and you can also sort them by dragging it, at top of each slide.
Generate the Nivo Slider and Click the Add to Blogger button
After adding the Widget Drag the Nivo Slider Widget where ever you want to show the Slider.
Generate Slider
If you Enjoyed with this Awesome Slider, Please Share this Tutorial.
Please leave your comments and suggestion to improve this slider more on blogger platform. :)
Nivo Slider Features
16 unique transition effects
Simple clean & valid markup
Loads of settings to tweak
Built in directional and control navigation
Packed version only weighs 12kb
Supports linking images
Keyboard Navigation
HTML Captions
3 Slick Themes
Free to use and abuse under the MIT license
For more Information Visit the Nivo Slider website
Preview
Watch Live Preview
How to Install jQuery Nivo Slider in Blogger?
Here are the Two simple steps to add the Nivo Slider to your Blog.
Please keep in mind, All the Slide images widths and Heights Should be Same, and those are match with the Slider Script Width and Height.
For Example:- I taken the Width and Height as 640px and 300px Respectively. Then all my Slide images width and Height MUST be 640px x 300px. Then only Slider works AWESOME!. :D
Installing the Nivo Slider Script
Here is the Generator for the Nivo Slider Script.
Just Customize the settings as your need and Generate the Code.
Copy the Nivo Slider Script and paste it before </head>
Generate Script
Adding Nivo Slider
Here is another Nivo Slider Slides Generator.
Add any Number of Slides and insert the Valid Image URL(required) into each Slide.
You have the options to add the links and Captions to each slide, and you can also sort them by dragging it, at top of each slide.
Generate the Nivo Slider and Click the Add to Blogger button
After adding the Widget Drag the Nivo Slider Widget where ever you want to show the Slider.
Generate Slider
If you Enjoyed with this Awesome Slider, Please Share this Tutorial.
Please leave your comments and suggestion to improve this slider more on blogger platform. :)
Go to link Download
Thursday, November 10, 2016
How To Add Whatsapp Share Button to Mobile View Of your Blog or Website
How To Add Whatsapp Share Button to Mobile View Of your Blog or Website
Whatsapp is undoubtedly the most popular mobile messenger with over 600 million users all around the globe. The the amount of people using the messenger app, i will without doubt tell you that it will sure help boost your traffic if you add whatsapp share button to your blog of website for users to easily share whatever they read on your blog or website with their friends.

I will be showing you how to add whatsapp share button to your blog or website and increase your mobile traffic.
For WordPress Users Wordpress users can easily add Whatsapp share button to their blog using Mobile Sharebar, https://wordpress.org/plugins/mobile-sharebar/ . This is actually one of the first Plugin on wordpress to add whatsapp share button and I must say the developer did a good job. The Sharebar only appears to your visitors If they are browsing using a mobile device.
Just Like any Sidebar Plugin, you can customize it to show on Top of page,Bottom of page, Front page, Pages, Posts, Categories, Archives, Tags and Custom Post types. The settings of the plugin is quiet easy to follow.
Normally the Whatsapp share button shows on Iphones and Android Devices but you can force it to show on all devices by Clicking the "Show Everywhere " box as shown on the image above.
For Blogger and Other CMS You can easily add the Whatsapp share button to your blog by using the Whatspp sharing button tool,whatsapp-sharing.com to generate a code and add it to your blog.
Normally the Whatsapp share button shows on Iphones and Android Devices but you can force it to show on all devices by Clicking the "Show Everywhere " box as shown on the image above.
For Blogger and Other CMS You can easily add the Whatsapp share button to your blog by using the Whatspp sharing button tool,whatsapp-sharing.com to generate a code and add it to your blog.
You can also easily customize the whatsapp share button to the size you want,text that will appear on sharing and also a custom url. Just follow the instruction as shown above,generate a code and embed on your blog or website.
There you have it, you have added whatsapp share button to your blog or website and I bet you, it will help double your mobile traffic.
I know that this was really increase your mobile traffic. Also share this post to your friends on social media.
There you have it, you have added whatsapp share button to your blog or website and I bet you, it will help double your mobile traffic.
I know that this was really increase your mobile traffic. Also share this post to your friends on social media.
Go to link Download
Friday, November 4, 2016
How to Add Google Calendar in Blogger
How to Add Google Calendar in Blogger

What is Google Calendar?
Google Calendars is a web application that provides you amazing time-management facility. It keeps track of important events such as a birthday, upcoming events, your best friends wedding and etc. So, you can never be late on any important events.Similarly, time management is also important for a blogger, having a rough schedule makes it even tougher. With Google Calendar, you can keep track of events, things to do, goals to achieve and any daily activity that you dont want to miss.
How to add Google Calendar to your Blogger site:
Step#1: Getting Started with Google Calendar:Firstly you need to go to Google Calendar and login with your Google account. If you dont have an account, create a new one. After logging in, your Google calendar account is ready to assist you in remembering any important events.
Step#2: Creating New events in Google Calendar:
To create new events on Google Calender, click on the Create button located at the top left corner of your screen. You can see the below screenshot for assistance.


Step#3: Embed Google Calendar in Blogger:
Go to Google Calendar, click the gear button located at the top right side of your screen and select Settings.



We hope this tutorial has helped you in learning how to add a Google Calander in blogger.
Go to link Download
Thursday, November 3, 2016
How To Add Live Feeds In Your Blog
How To Add Live Feeds In Your Blog
Here is a news for all the bloggers out there. You can Feedjit which is a app that will tell you your blog visitors live and will give you the live feeds for free. The Feedjit is very useful for the blogs.





To add Feedjit to your Blog:
- Click Here.

- Click on Choose Your Feedjit .

- Click On the First Sign Up .

- Choose Your Color according to your choice.

- Select Your Blog Type And Click On Go

- Copy This Code In Your HTML Script.
- You Have Installed Feedjit .
Go to link Download
Friday, October 28, 2016
How To Add Related Posts Widget For Blogger With Thumbnails
How To Add Related Posts Widget For Blogger With Thumbnails
Today topic is "How You Can Added Related Posts Widget For Blogger With Thumbnails". When you add this widget your blog looks beautiful. It helps your readers to go through the similar posts they were reading and so this widget helps to decrease your bounce rate by increasing blog page views.
In this post we will go through the steps of adding the Related Posts Widget with thumbnails for Blogger. Ready to added it to your template? Go through the steps by steps below. Lets sarts.
How To Add Related Posts Widget For Blogger With Thumbnails
Now youve done all the proccess correct, congrat youve been added the related post widget successful into your blogger post.
Enjoy and dont forget to share this tutorial to your friends and other communities.

- How to Added Your blog Sitemap widget automatically
How To Add Related Posts Widget For Blogger With Thumbnails
- Firstly Go To Blogger Dashboard.
- Back up your existing Template before making any changes!
- Make sure to check the "Expand Widget Templates " box.
- Find </head> Using CTRL+F
- Copy the code below and paste it just after </head> tag.
<!--Related Posts with thumbnails Scripts and Styles Start --><b:if cond=data:blog.pageType == "item"><style type="text/css">#related- posts {float:center;text- transform:none;height:100 %;min-height:100% ;padding-top:5px;padding- left:5px;} #related-posts h2{font- size: 1.6em;font-weight: bold;color: black;font- family: Georgia, &# 8220;Times New Roman&# 8221;, Times, serif;margin- bottom: 0.75em;margin-top: 0em;padding-top: 0em;}# related-posts a{color:black;} #related-posts a:hover {color:black;} #related-posts a:hover {background-color:# d4eaf2;}</style><script type=text/javascript>var defaultnoimage=" http://1 . bp.blogspot.com/_ u4gySN2ZgqE/ SosvnavWq0I/ AAAAAAAAArk/ yL95WlyTqr0/s 400 / noimage.png";var maxresults=5;var splittercolor="#d4eaf2";var relatedpoststitle="Related Posts";</script><script src=http:// beautifulbloggerwidgets. googlecode.com/files/ related_posts_with_ thumbnails_min.js type=text/javascript/></ b:if><!--Related Posts with thumbnails Scripts and Styles End -->
- Now find the following code below:
<div class=post-body>
- If you cant find it, then search for this below one by using Ctrl+F.
<data:post.body/>
- Copy the code below and paste it just after <data:post.body/> tag and save your template.
<!-- Related Posts with Thumbnails Code Start --> <b:if cond=data:blog.pageType == "item"> <div id=related-posts> <b:loop values=data:post.labels var=label> <b:if cond=data:label.isLast != "true"> </b:if> <script expr_src="/ feeds/posts/default/-/ " + data:label.name + "?alt=json-in- script&callback=related _results_labels_ thumbs&max- results=6" type=text/ javascript/></b:loop> <script type=text/ javascript> removeRelatedDuplicates_ thumbs(); printRelatedLabels_ thumbs ("<data:post.url/ >"); </script> </div><div style=clear:both/> <!-- remove --></b:if> <b:if cond=data:blog.url == data:blog.homepageUrl>< b:if cond=data:post.isFirstPost> <a href=http:// beautifulbloggerwidgets. blogspot.com/ ><img style="border: 0" alt="Blogger Widgets" src=" http://2.bp.blogspot . com/-Hn8-zTJf3L0/ T9cqAcnrfJI/ AAAAAAAAAGM/5gBy5_ MPPBQ/s 1600 /blogger- widgets.png" /></a> </b:if></b:if> <!-- Related Posts with Thumbnails Code End -->Change the 6 value from max-results=6 with the number of posts you want to be displayed.
Now youve done all the proccess correct, congrat youve been added the related post widget successful into your blogger post.
Enjoy and dont forget to share this tutorial to your friends and other communities.
Go to link Download
Monday, October 24, 2016
How to Add Music to Blog
How to Add Music to Blog
www.amalul.info - How to Add Music to Blog - welcome to my Blog, today I want to Share a tutorial for blogspot, and I give it for you. This article will help you to add music player to Blogger blog.it is very simple, this is the tutorial:
1. First, you need to go to Muzicons to get a music gadget. Select icon you like and search music you want to play on your blog. this is the picture:
| How to Add Music to Blog |
2. Select look and color for your music gadget. this is the picture:
| How to Add Music to Blog |
3. It is preview music player, now you can copy the HTML code. This is the picture:
| How to Add Music to Blog |
4. Go back to your Blogger blog and click Layout tab, then add a gadget on it. this is the picture:
| How to Add Music to Blog |
5. Find HTML/JavaScript and click the plus sign. this is the picture:
| How to Add Music to Blog |
6. Now paste the html code we copied in step three. Then click SAVE. this is the picture:
| How to Add Music to Blog |
7. Have a look at your blog, the music player is there.
| How to Add Music to Blog |
ok, now you have been add music to your blog, and you can listen your music in blog, many people also can listen the music when visit your blog.
Go to link Download
Sunday, October 16, 2016
How To Add Scroll To Top Button For Blogger
How To Add Scroll To Top Button For Blogger
To add Scroll To Top Button for Blogger.
- Go to Layout.
- Click on Add A New Gadget.
- Now Paste The Following HTML Code in the Content Area.
<!--NBT Scroll to top widget Start--><script src=http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js type=text/javascript></script><script type=text/javascript>$(function(){$(window).scroll(function(){if($(this).scrollTop()!=0){$("#NBT-top").fadeIn()}else{$("#NBT-top").fadeOut()}});$("#NBT-top").click(function(){$("body,html").animate({scrollTop:0},800);return false})});</script><a href="http://www.newbloggertips.com"></a><a id=NBT-top style=display: none; position: fixed; bottom: 1px; right:1%; cursor:pointer;font:12px arial;><img src=https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgWjNN_gIVppg5xxvaSxbpLc2XV5x8t2jLXXCZxaUgyXe4R6ZKRX2i4o8ra7zfSW_ZZYQMet30dPHXDAfwXrFO4I9zonbomEkkBuD4fxLiSwK0LPZnAlvIWiX_qMdzFE_pwAiUeN9yIC5k/s1600/NBT-scroll+up.png alt=Scroll to top widget @NBT Blog.newbloggertips.com width="67px" height="67px"/></a><!--NBT Scroll to top widget End-->
- Click on Save
- Refresh Your Blog.
- Scroll down a bit and you will see on the right corner a scroll to top button.
- Thats all.
To View Demo Click Here.
Go to link Download
Friday, October 14, 2016
How To add bold italics and strikethroughs to your WhatsApp messages
How To add bold italics and strikethroughs to your WhatsApp messages

WhatsApp, the most popular chatting service, will now let you add the new options of bold, italics and strikethrough to your everyday WhatsApp chat in its latest update.
Tweet
1. For bold, add asterisks to either side of your text, e.g. *bold*
2. For italics, add underscores to either side of the specific word or words, e.g. _italics_
3. For strikethrough, add a tilde (~) to either side of the word or words, e.g. ~strikethrough~
Its also possible to can surround a word with all three of the characters and have each of the formatting options apply to a word, such as _*bolditalics*_.
These new stylings can also be entered in the WhatsApp web client which launched last year but the formatting will only show up in the app-based version of chats.
Go to link Download
Tuesday, October 11, 2016
How To Add East Asian Language Support To Your BlackBerry Bold 9780
How To Add East Asian Language Support To Your BlackBerry Bold 9780

Here CJK (Chinese, Japanese, Korean) characters and font support for you...BlackBerry Bold 9780 user! The steps below will guide you through how to install the CJK file to your device.
- Download the zip file (Click the link below to download).
- Unzip the file.
- Copy the COD files to: C:Program FilesCommon FilesResearch In MotionSharedLoader Files*9780M_v6.0.0.448_P6.5.0.136Java
- Copy the ALX file to: C:Program FilesCommon FilesResearch In MotionSharedLoader Files*9780M_v6.0.0.448_P6.5.0.136
- Plug in the your device.
- Load up DM, click on Application, choose the language support (Chinese, Japanese, Korean or Thai) you would like to install.
- Click on Apply, wait for the process to complete and your phone to reboot completely before disconnecting.
- Done!
* Your BlackBerry OS 6 file name
- Hotfile
- MultiUpload
Go to link Download
Saturday, October 8, 2016
How To ByPass Adf ly Add Timer Adf ly Hack Download without advertisement
How To ByPass Adf ly Add Timer Adf ly Hack Download without advertisement
Adf.ly and Linkbucks are the online websites which pay you for shortening links and then displaying advertisements on those links. So, a visitor has to first wait for 5 seconds and see the advertisement before he can visit the actual website. This 5 seconds wait is really annoying and so I am posting a Adf.ly hack. In this article, we will learn the best way to bypass Adf.ly, linkbucks wait times and download/browse without advertisement.

So, let us get started with this Adf.ly hack:
1. You need to have Greasemonkey addon installed in your Firefox. If you are using Chrome, here is the link to Tampermonkey.
2. Now, go to Bypass Adf.ly script and install the script in your browser.

3. So, the next time you visit any Adf.ly link(e.g. http://adf.ly/DuLN), you wont see the 5 seconds wait timer and will be taken directly to the intended site. Cheers!
This was a short tutorial on bypassing Adf.ly, linkbucks wait timer and downloading without advertisement. If you have any other Adf.ly hack to bypass Adf.ly, please let us know in comments.
Hack/Bypass Adf.ly:
So, let us get started with this Adf.ly hack:1. You need to have Greasemonkey addon installed in your Firefox. If you are using Chrome, here is the link to Tampermonkey.
2. Now, go to Bypass Adf.ly script and install the script in your browser.
3. So, the next time you visit any Adf.ly link(e.g. http://adf.ly/DuLN), you wont see the 5 seconds wait timer and will be taken directly to the intended site. Cheers!
This was a short tutorial on bypassing Adf.ly, linkbucks wait timer and downloading without advertisement. If you have any other Adf.ly hack to bypass Adf.ly, please let us know in comments.
Go to link Download
Tuesday, September 27, 2016
How To Add Yahoo Smileys To Blogger Threaded Comments
How To Add Yahoo Smileys To Blogger Threaded Comments
Getting and posting a good blog post can be quite difficult but every determined Blogger will always succeed in concurring these two obstacles but, what lies now is getting people to comment on your post, oh yea thats where the real koko lies. Most readers actually dont like commenting on blogs, especially if they found your blog so boring, but this hack aims to increase your chances of getting more comments on your blog, as readers will love to see the functionality of the smileys by commenting your blog which will definitely brings you more exposure.
This hack works with blogger threaded comment and on all blogger template. Now follow the simple steps below.

How To Add Yahoo Smileys To Blogger:
- Go to your blogger dashboard
- Click on Template > Edit HTML > Proceed (Mark/Tick Expand Widget Template)
- Use crtl F to find ]]></b:skin> and paste the following code above it.
img.nairotech {
height: auto !important;
vertical-align: middle !important;
width: auto !important;
border:0px !important;
}
height: auto !important;
vertical-align: middle !important;
width: auto !important;
border:0px !important;
}
- Search for </body> and paste the following code above </body>
<script src=http://rbcode.googlecode.com/files/yahoosmileys.js type=text/javascript/>
- Now search for this line <div class=post-footer-line post-footer-line-3>
- Find the next </b:includable> and paste the following code above </b:includable>
<b:if cond=data:blog.pageType == "item">
<div class=realcombiz id=ysmile style=
background: -moz-linear-gradient(top, #e4f5fc 0%, #bfe8f9 50%, #9fd8ef 51%, #2ab0ed 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4f5fc), color-stop(50%,#bfe8f9), color-stop(51%,#9fd8ef), color-stop(100%,#2ab0ed));background: -webkit-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);background: -o-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);background: -ms-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);background: linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);border-radius: 3px;width:100%; padding:10px; height:65px;>
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif/> :)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/2.gif/> :(
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/3.gif/> ;)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/4.gif/> :D
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/7.gif/> :-/
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/8.gif/> :x
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/10.gif/> :P
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/11.gif/> :-*
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/12.gif/> =((
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/13.gif/> :-O
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/14.gif/> X(
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/15.gif/> :7
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/16.gif/> B-)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/18.gif/> #:-S
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif/> :((
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/21.gif/> :))
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/24.gif/> =))
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/26.gif/> :-B
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/101.gif/> :-c
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/100.gif/> :)]
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif/> ~X(
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/103.gif/> :-h
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/28.gif/> I-)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/41.gif/> =D7
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/43.gif/> @-)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/45.gif/> :-w
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/47.gif/> 7:P
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/48.gif/> 2):)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/110.gif/> :!!
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/111.gif/> m/
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/112.gif/> :-q
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/113.gif/> :-bd
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/114.gif/> ^#(^
</div><a href="http://nairotech.com"></a></b:if>
<div class=realcombiz id=ysmile style=
background: -moz-linear-gradient(top, #e4f5fc 0%, #bfe8f9 50%, #9fd8ef 51%, #2ab0ed 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4f5fc), color-stop(50%,#bfe8f9), color-stop(51%,#9fd8ef), color-stop(100%,#2ab0ed));background: -webkit-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);background: -o-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);background: -ms-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);background: linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);border-radius: 3px;width:100%; padding:10px; height:65px;>
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif/> :)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/2.gif/> :(
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/3.gif/> ;)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/4.gif/> :D
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/7.gif/> :-/
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/8.gif/> :x
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/10.gif/> :P
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/11.gif/> :-*
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/12.gif/> =((
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/13.gif/> :-O
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/14.gif/> X(
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/15.gif/> :7
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/16.gif/> B-)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/18.gif/> #:-S
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif/> :((
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/21.gif/> :))
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/24.gif/> =))
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/26.gif/> :-B
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/101.gif/> :-c
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/100.gif/> :)]
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/102.gif/> ~X(
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/103.gif/> :-h
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/28.gif/> I-)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/41.gif/> =D7
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/43.gif/> @-)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/45.gif/> :-w
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/47.gif/> 7:P
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/48.gif/> 2):)
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/110.gif/> :!!
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/111.gif/> m/
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/112.gif/> :-q
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/113.gif/> :-bd
<img alt= class=bhacksmly src=http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/114.gif/> ^#(^
</div><a href="http://nairotech.com"></a></b:if>

- Save your template
Go to link Download
Sunday, September 25, 2016
How To Add And Claim Site On Alexa
How To Add And Claim Site On Alexa
Alexa is perhaps best known for the Alexa Rank - our website ranking system which tracks over 30 million websites worldwide. The Alexa Rank and other metrics allow site owners to benchmark their sites and give consumers, marketers and advertisers metrics to evaluate websites for media buying, partnerships, and other business opportunities.
MUST READ!! How To Boost Alexa Rank to Your Website/Blog Site

MUST READ!! How To Boost Alexa Rank to Your Website/Blog Site

How to Claim Your Blog at Alexa.com
- To claim your blog at Alexa, you must be a registered user. If you dont have an account on Alexa yet, visit Alexa to create an account or Login.
- After creating an account and or Logged in, click on "Dashboard" on the menu bar.
- I guess this is your first time, On you dashboard youll see; "Add sites to get certified metrics, run site audits, or edit site information. Get Started"
- Click on the "Get Started" butto
- On the next page, click on Free Sign Up
- Enter sites URL to the "website URL" field and hit "Continue"
- Copy and save your ID which is underlined with a green line on the image above to a notepad. It will be needed later.
Note; Do not close the Alexa page.Step 2
- From your blogger dashboard
- Click on "More Options"
- Click on "Template" - From here you may back up your template
- Click "Edit HTML"
- Make sure to tick the "Expand Widget Template" box and
- Find <head> using Ctrl + F on your keyboard.
- Paste the Alexa ID I asked you to save to a notepad below the <head> tag.
- Having done that, Click "Save Template" and go back the Alexa page and
- Click Verify my ID
MUST READ!! How To Boost Alexa Rank to Your Website/Blog Site
Go to link Download
Thursday, September 22, 2016
How to Add Related Posts Below Your Blog Posts Using nRelate Blogger
How to Add Related Posts Below Your Blog Posts Using nRelate Blogger

Adding related posts beneath your blogs post pages has been very effective for every blogger. This tutorial is on "How to add "nRelate" related posts widget to your blogs". "nRelate" related posts widget is very easy to customize according to your blogs color scheme. You can also decide whether to show thumbnails or simple links as your related posts. Follow the following steps to add "nRelate" related posts widget to your blogs.
Note: I recommend registering to nRelate in order to customize your widget.
How to add nRelate widget?
- Go to nRelate website and click Partner Login
- Now hover over Install button and click Blogger. A field would appear where you have to provide you blog link where you want to add nRelate widget. Then click submit.
- Now click Advance version (to be able to edit the plugin later)
- Next it would ask you whether you want to add it to your post pages only or on main blog page too, I recommend you add it to your post pages.
- Next it would open up a widget called Add page element. There are 2 sections. Click on the section that says Edit Content as shown below.
- You have to delete the code in Red as shown below.
<style type="text/css">@import url(http://static.nrelate.com/common_b/0.01.0/nrelate-panels-default.min.css);</style><div id=nrelate_related_placeholder/></div>Click Add Widget button and its all done. :) Hope that was easy to follow.
Go to link Download
Wednesday, September 21, 2016
How to Add Email Subscription Box Widget to Blogger with Social Media Icons
How to Add Email Subscription Box Widget to Blogger with Social Media Icons
Todays weve give you blogger tips about how to Add Email Subscription Box with some social media share bottom to your Blogger for getting more subscribers to your blog. You can get more traffic with Email subscription. We give you step by step guide on how to add email subscription box togethe with Facebook, Twitter, Pinterest and Rss Subscriber Icons.
This is very good looking and attractive widget for blogger to increase RSS subscribers with Facebook Fan Page, Twitter Account and Pinterest Icon.

Add Email Subscription Box to your Blogger


This is very good looking and attractive widget for blogger to increase RSS subscribers with Facebook Fan Page, Twitter Account and Pinterest Icon.

Add Email Subscription Box to your Blogger
We give you step by step guide to Add Email Subscription Box Widget to Blogger, Please follow below induction to add widget on your blog:
1. Now Login into Blogger Dashboard
2. Go to Layout and Click on Add Gadgets as shown in this below picture.
3. When you click on Add a Gadgets a new popup will be opened, and select HTML/JavaScript from list.

4. Copy and paste the below code:
<style> .NNBTsocial_box-email{ background:Fff no-repeat 0px 12px ; width:270px;float:center;font-size:1.4em;font-weight:bold;margin:2px 20px 0px 10px;color:#686B6C; } .NNBTsocial_box-emailsubmit{ background:#0084CE;cursor:pointer; color:#fff; border:none;padding:3px;margin:0 0 0px 0;text-shadow:0 -1px 1px rgbaundefined0,0,0,0.25); -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; font:12px sans-serif; } .NNBTsocial_box-emailsubmit:hover{ background:#E98313; } .textarea{ padding:2px; margin:0px 2px 0px 2px; background:#f9f9f9; border:1px solid #ccc; resize:none; box-shadow:inset 1px 1px 1px rgbaundefined0,0,0,0.1); -moz-box-shadow:inset 1px 1px 1px rgbaundefined0,0,0,0.1); -webkit-box-shadow:inset 1px 1px 1px rgbaundefined0,0,0,0.1); font-size:13px; width:200px; height:20px;color:#666;} #socialboxNBT { text-align:center;font-weight:bold;padding:5px;border:1px solid black;width:300px; -moz-box-shadow: 0px 0px 8px #000000;-webkit-box-shadow: 0px 0px 8px #000000;box-shadow: 0px 0px 8px #000000;} </style> <br /> <div id="socialboxNBT"> <a href="http://feeds.feedburner.com/kudantown" imageanchor="1" rel="nofollow" style="float: center; margin-left: .5em; margin-right: 1em;" target="blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_Cqk1bTk3III2PNGoGLlVp-8xTzjf5aznp5jHvTeaY059y4ZCkFOigrVfzZ8Kh9OhhbkeglsIKatRS0ob5py5kxoi2G9tSjIJX3Kl0mzpDN1oj7qLzJ8egqVfVF8oSy-KnT_L2ijEzO0/s1600/NNBT-rss.png" /></a> Submit your Email Address to Get Free latest Articles Directly to your Inbox <br /> <div class="NNBTsocial_box-email"> <form action="http://feedburner.google.com/fb/a/mailverify" id="feedform" method="post" onsubmit="window.openundefinedhttp://feedburner.google.com/fb/a/mailverify?uri=NBTLab, popupwindow, scrollbars=yes,width=550,height=520);return true" target="popupwindow"> <input class="textarea" gtbfieldid="3" name="email" onblur="if undefinedthis.value == "") {this.value = "Enter email address here";}" onfocus="if undefinedthis.value == "Enter email address here") {this.value = "";}" type="text" value="Enter email address here..." /> <input name="uri" type="hidden" value="haakblog" /><input name="loc" type="hidden" value="en_US" /> <input class="NNBTsocial_box-emailsubmit" type="submit" value="Submit" /> </form> </div> <style class="text/css"> table {border-bottom: 0px solid #E6E6E6;float: center;width: 300px;margin:-8px 0 0 0px;} .subicons {border-right: 0px solid #E6E6E6;} .Fadeout {filter:alphaundefinedopacity=100);opacity: 1.0;border:0; } .Fadeout:hover{filter:alphaundefinedopacity=80);opacity: 0.8;border:0; } </style> <br /><div class="table"><table> <tbody><tr> <td><div class="subicons"> <a class="Fadeout" href="http://www.facebook.com/symbiangurus" imageanchor="1" rel="nofollow" target="_blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaVqgRmbctR2AuCW1vrppd5FByMUfQxcvAEWJ6nfFgAgvX_1phBXjEzscKM0OiNEdnXy31E9FRhtBi-BB6-rhyjIQ9jIm65UlnCYPvFXsF1sjaNAnjbpu6Dmt9briC9ZKUUhKYXXRuyh0/s1600/NNBT-facebook-icon.png" /></a></div> </td><td><div class="subicons"> <a class="Fadeout" href="http://www.twitter.com/abubakarkudan" imageanchor="1" rel="nofollow" target="_blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3sfbC5sjAzPRn-Dzh3yXTsqULxfbE5LtC2YGcm6BNK_32BSMFcAkyLrL7-NooFy4IjP9Fd0nwXrwPtvDpRK8ux82hiE63Qvbxu5WBR0I2vcv03UIdz8N3WjnX2-NUa568tWhQY6rQ9yc/s1600/NNBT-twitter-icon.png" /></a></div> </td> <td><div class="subicons"> <a class="Fadeout" href="http://feeds.feedburner.com/kudantown" imageanchor="1" rel="nofollow" target="_blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyBW3w223Z0Gpt8mA9ZJb3H9gkCXrcxcTlM-X51po0gBInIjm0JHs2ebbTHEjNF3lQTmAzEzj8c3-q5YUXb18GbmTKy5V3IDPki4gZhf9pWL73fE2xmswUhGJFKhkQGSfGe-8L1gIQqtM/s1600/NNBT-rss-icon.png" /></a></div> </td> <td><a class="Fadeout" href="https://pinterest.com/kudantown" imageanchor="1" rel="nofollow" target="_blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitQx3nz2mgd0XsbjwrHeY8o1SOrtlo3waxPMLgpA3oS6RzAAZBFIw7i7b2d-NCKsJg_4p1DAy7BHmyJE5NiSLgkA7R0hR7A-3BiTZCu74SDBmTGff6YCgQ98x4yTwRLZkfbWgqeDxj6mA/s1600/NNBT-Pinterest-icon.png" /></a></td> </tr></tbody></table></div></div>
<small>
<a href="http://www.haakblog.com" rel="dofollow" target="_blank" title="blogger"><img src="https://bitly.com/haakblog" alt="blogger" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a style=align:center; href=http://www.haakblog.com/2013/10/add-email-subscription-box-widget-blogger.html target=_blank>Get Widget</a></small>
<a href="http://www.haakblog.com" rel="dofollow" target="_blank" title="blogger"><img src="https://bitly.com/haakblog" alt="blogger" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a style=align:center; href=http://www.haakblog.com/2013/10/add-email-subscription-box-widget-blogger.html target=_blank>Get Widget</a></small>
5. After copy and paste the code follow and the below with your username.
- Change http://feeds.feedburner.com/kudantown to your Feed Burner username
- Change http://www.facebook.com/symbiangurus to your Facebook fans Page Name.
- Change http://www.twitter.com/abubakarkudan to your Twitter Username.
- Change https://pinterest.com/kudantown to your Pinterest Username.
Steps to change your username:
Then Click on save button and enjoy,dont forget to share this post to your friends.
Also Join our Facebook group for more.
Go to link Download
Subscribe to:
Posts (Atom)