How to Install WordPress on Windows Computer Using WAMP - How2shout

How to Install WordPress on Windows Computer Using WAMP - How2shout

Please click the link for full post: http://www.how2shout.com/wordpress/how-install-wordpress-locally-using-wamp.html

How to Add Facebook Like Box Widget in Blogger

To increase traffic or become popular on Facebook social media you can add Facebook Like Box widget by following simple steps given in this article


Follow these steps
Step 1: To add any widget in Blog, first login into blogger dashboard and go to layout option then click on ADD a Gadget link where you want to add the Facebook like box widget as shown below in picture


Facebook Like Box Widget


Step 2: A windows will pop-up when you click on Add a Gadget link and then add HTML/JavaScript  as shown in below picture.


Facebook Like Box For Blogger
Step 3:
Insert below code into box.
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2
Ftechhod&amp;width=300&amp;
height=190&amp;show_faces=true&amp;colorscheme=light&
amp;stream=false&amp;border_color&amp;header=false"
scrolling="no" frameborder="0" style="border:none;
overflow:hidden; width:312px; height:190px;" allowtransparency="true"></iframe>
<a href="http://www.haakblog.com/2014/02/download-best-blogger-templates-of-2014.html" rel="dofollow" target="_blank" title="blogger templates"><img src="http://img1.blogblog.com/img/blank.gif" alt="blogger templates" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://www.haakblog.com" rel="dofollow" target="_blank" title="blogger widgets"><img src="http://img1.blogblog.com/img/blank.gif" alt="blogger widgets" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><div id="rpdr" style="font-family: arial, sans-serif; font-size: 9px;">
<a href="http://www.haakblog.com/2014/10/facebook-like-box-widget-for-blogger.html" target="_blank" title="Facebook Widget">Facebook Widget</a></div>


Note: Change techhodto your facebook page name. You can also change Width andHeight as your requirement.
Step 4
Click on save button.

How To Create A Blog Navigation Menu Bar Sticky While scrolling the post in blogger

There are lots of blog templates available on internet which are free but every blog has some different feature and widgets .Many websites and
blogs today using a sticky or fixed navigation menu bar in their sites template which gives extra advantage to their reader that when they scroll to view their posts they can easily choose different pages from navigation menu without going back to the top. For example you can view my blog Navigation menu bar which is sticky. So, if you have blog and you don’t have this feature then here is your solution.



So, it is not some geeky task you just have to follow these steps to Create A Sticky Navigation Menu Bar.

How to create A Sticky Navigation Menu Bar Step By Step



Step 1 :
Go to Blogger Dashboard and Click on Layout


C:\Users\VIJAY\Desktop\Techhod blog1.PNG



Step 2: Click on Add a Gadget


C:\Users\VIJAY\Desktop\Techhod blog2.PNG

Step 3:
Now a pop up window will open, scroll down and click on HTML/JavaScript


C:\Users\VIJAY\Desktop\Techhod blog3.PNG


Step 4: Now paste the given java script code which given below in the content box and click on save.


C:\Users\VIJAY\Desktop\Techhod blog4.PNG



Java script code, copy and  paste it in HTML/java script content box which mentioned in step 4

<script> // Sticky widget // Tutorial // Free to use or share //<![CDATA[ bs_makeSticky("PageList1"); // enter your widget ID here function bs_makeSticky(elem) { var bs_sticky = document.getElementById(elem); var scrollee = document.createElement("div"); bs_sticky.parentNode.insertBefore(scrollee, bs_sticky); var width = bs_sticky.offsetWidth; var iniClass = bs_sticky.className + ' bs_sticky'; window.addEventListener('scroll', bs_sticking, false); function bs_sticking() { var rect = scrollee.getBoundingClientRect(); if (rect.top < 0) { bs_sticky.className = iniClass + ' bs_sticking'; bs_sticky.style.width = width + "px"; } else { bs_sticky.className = iniClass; } } } //]]> </script> <style> .bs_sticking {background:#ffffff !important; position:fixed !important; top:0; z-index:9999; box-shadow:0px 10px 4px -5px rgba(0,0,0,0.3); margin-top: 0; position:relative\9 !important;} </style>


One important thing is you have to change the widget ID in the given script after pasting it in to HTML content box .Here, the ID is "PageList1" (6th line)please change it your navigation bar ID which you will find Template Edit HTML option .To get the sticky navigation bar background according to you original background please change the background color at 28 line of script. Now, just save the arrangements and go to your blog and  I hope you will find your Navigation bar sticky .If you get any trouble you can ask me any time