Skip to main content

Tips To Get Sitelinks In Google Search Results - Blogger

Sitelinks are some links that are showing below site in search engines. Its not just in Google search results but in Bing, Yahoo and also in Yandex. There is no idea how to get sitelinks, even Google says that sitelinks are automatically generated links to help visitors reach important pages of your site. Also you have no control over which page you want in sitelinks and also there is no code which can do it. You might be thinking that if nothing is known about sitelinks, how am I going to get it for my site ? Well, the answer is simple you will get it as I got them ! What Are Google Search Result Sitelinks: Above is the sceenshot of sitelinks of my blog. If you search "101helper" oon Google you will see the sitelinks live. These are featured links from my blog and are shown to visitors to help them reach deeper pages or help them to reach the content of interest on a site. Note that sitelinks never remain the same they change time to time and we have no control over it. Goog

Slide Out Css/Javascript Menu For Blogger

hover_share

So far I have shared a slide in menu for blogger and today I am back with a new menu, it is a slide out menu. You can see it how it works in the above image. It is very unique menu as you can see it has icons, a responsive search box and cool follow buttons. You can see a live demo of this menu here. It is designed with css and javascript qnd it is good for those blogs which are congested or responsive, good for congested blogs because it doesn't take space on blogs, it is hidden until the trigger is clicked and good for responsive blogs because of its responsive design. Because of icons it looks more good and it resembles to wordpress menus. In this post I will show you how to add this menu in your blog and also how to customize this menu.



Follow below steps to add this menu in you blog:


Step 1: Go to your blog and click on layout in the menu on left side.


Step 2: Click on add a gadget and scroll down to Html/javascript.


Step 3: Copy below code and paste it into Html/javascript tab:


<style>
@import url(http://weloveiconfonts.com/api/?family=zocial);
/* zocial */
[class*="zocial-"]:before {
  font-family: 'zocial', sans-serif;
}
.wrapper{
  width: 325px;
  height: 50px;
  position: absolute;
top: 91%;
  left: 74%;
  margin-left: -162px;
  margin-top: -25px;
}

.icon{
  display: inline-block;
  position: relative;
  color: #bdbdbd;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.47em;
  line-height: 2em;
  background-color: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0px 3px 0px #bdbdbd, 0px 3px 10px #bababa;
  -webkit-transition:background-color 250ms ease 0s;
  transition:background-color 250ms ease 0s;
}

.zocial-facebook{margin-left: -8px;margin-left: -2px;
  position: relative;
  top: 6px;}

.icon.facebook:hover{background-color: #4986c7;}
.twitter:hover{background-color: #4cb6e8;}
.linkedin:hover{background-color: #29a0cc;}
.youtube:hover{background-color: #a32929;}
.google:hover{background-color: #C75345;}

a{
  text-decoration: none;
}
a:hover{
text-decoration: none;
}
.icon:hover{
  color: #fff;
  box-shadow: 0px 3px 0px #686868, 0px 3px 10px #7e7e7e;
}

.icon:active{
  box-shadow: inset 0px 1px 4px #3d3d3d, 0px 0px 0px #bdbdbd;
  top: 3px;
}
</style>
<style>
span.zocial-linkedin,span.zocial-youtube,span.zocial-twitter,span.zocial-google {
  position: relative;
  top: 5px;
}
.flexsearch--wrapper {
height: auto;
width: auto;
max-width: 100%;
overflow: hidden;
background: transparent;
margin: 0;
position: static;
}

.flexsearch--form {
overflow: hidden;
position: relative;
}

.flexsearch--input-wrapper {
padding: 0 66px 0 0; /* Right padding for submit button width */
overflow: hidden;
}

.flexsearch--input {
  width: 100%;
}

/***********************
 * Configurable Styles *
 ***********************/

.flexsearch--input {
  height: 30px;
  padding: 0 50px 0 10px;
  border-color: #888;
  border-radius: 35px;
  border-style: solid;
  border-width: 2px;
  margin-top: 5px;
  color: #333;
  font-family: 'Helvetica', sans-serif;
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input.flexsearch--submit {
  background: none;
  border: none;
  color: #888;
  position: relative;
  float: right;
  position: relative;
  bottom: 28px;
  right: 10px;
  font-size: 15px;
}

.flexsearch--input:focus {
  outline: none;
  border-color: #67B045;
}

.flexsearch--input:focus.flexsearch--submit {
  color: #333; 
}

.flexsearch--submit:hover {
  color: #67B045;
  cursor: pointer;
}

::-webkit-input-placeholder {
color: #888;  
}

input:-moz-placeholder {
  color: #888
}
#cssmenu {
  background: #333;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 244px;
position:relative;
right:24px;
top:0px;
}
#cssmenu li {
  font: 17px "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  list-style: none;
text-align:center;
}
#cssmenu a {
  background: #333;
  border-bottom: 1px solid #393939;
  color: #ccc;
  display: block;
  margin: 0;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: normal;
}
#cssmenu a:hover {
  background: #67B045;
  color: #fff;
  padding-bottom: 8px;
}

.menu {
    overflow-x:hidden;
    position:relative;
    left:0;
}

.menu-open {
    margin-left:241px;
}

.menu-open .menu-side {
    left:0;
}

.menu-side,
.menu {
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.menu-side {
    position:fixed;
    left:-231px;
    top:0;
    width:210px;
    border-right:1px solid #000;
    height:100%;
    background-color:#333;
    color:#fff;
    padding:10px;
}
</style>

        <link rel="stylesheet" href="css/main.css" />
        <header>
            <a href="#" class="menu-toggle"><img src="http://www.jacksontransit.com/images/menu.png"/></a>
        </header>
        <nav class="menu-side">
<div id='fksearch'>
<div class="flexsearch">
<div class="flexsearch--wrapper">
<form class="flexsearch--form" action="/search" method="get">
<div class="flexsearch--input-wrapper">
<input class="flexsearch--input" type="text" placeholder="search here..." name="q" />
</div>
<input class="flexsearch--submit" type="submit" value="&#10140;"/>
</form>
</div>
</div>
</div>
<div id='cssmenu'>
<ul>
   <li class='active'><a href='#'><img src="https://i61.tinypic.com/21lsl7o.png" style="
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
" /><span>  Home</span></a></li>
<li class='active'><a href='#'><img src="http://i60.tinypic.com/wbulcl.png" style="
    position: relative;
    top: 3px;
" /><span>  About</span></a></li>
   <li><a href='#'><img src="http://i57.tinypic.com/ax0fhu.png" style="
    position: relative;
    top: 3px;
" /><span>  Product 1</span></a></li>
   <li><a href='#'><img src="http://i57.tinypic.com/ax0fhu.png" style="
    position: relative;
    top: 3px;
" /><span>  Product 2</span></a></li>
<li><a href='#'><img src="http://i62.tinypic.com/35cg6s6.png" style="
    width: 22px;
    height: 22px;
    position: relative;
    top: 3px;
" /><span>  Sitemap</span></a></li>
<li><a href='#'><img src="http://i59.tinypic.com/208gxs4.png" style="
    position: relative;
    top: 3px;
" /><span>  Advertise</span></a></li>
   <li class='last'><a href='#'><img src="http://i58.tinypic.com/2nlycu8.png" style="
    position: relative;
    top: 3px;
" /><span></span> Contact</a></li>
</ul>
</div>
<div class="wrapper">
  <a class="icon facebook" href="#"><span class="zocial-facebook"></span></a>
  <a class="icon twitter" href="#"><span class="zocial-twitter"></span></a>
<a class="icon google" href="#"><span class="zocial-google"></span></a>
  <a class="icon linkedin" href="#"><span class="zocial-linkedin"></span></a>
  </div>
        </nav>

        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
        <script>
            (function() {
                var body = $('body');
                $('.menu-toggle').bind('click', function() {
                    body.toggleClass('menu-open');
                    return false;
                });
            })();
        </script>

   <script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>


Step 5: Replace hashes(#) with your tabs and social networks links.

Step 6: Click on save and you are done successfully!

Customization:

  • Replace hashes(#) with your tabs and social network links.
  • Change code of the color in the highlighted piece of code to change hover color of tabs(  background: #67B045;).
  • Replace the text of tabs with your desired text.
  • To add a new tab add the below code in menu code section:

<li><a href='#'><img src="http://i57.tinypic.com/ax0fhu.png" style="position: relative;top: 3px;" /><span>  Product 1</span></a></li>

         Replace the black colored link with icon of your tab. Get menu icons                                  at http://iconizer.net

Hope you like this menu and it is working fine on your blog. Give me your feedback below. Share this post with others and subscribe to get latest news about blogger menus. Keep visiting 101Helper :).

Search tags: Slide out menu for blogger, blogger slide out menu, wordpress style menu for blogger, blogger menu with icons, blogger menu with social buttons, blogger menu with search box, 101helper blogger menus.

Comments

Popular posts from this blog

Addthis Pop-up Social Sharer Widget For Blogger

We all know that popups are really beneficial to get followers, likers and traffic and thats why tools like Hellobar is used by many. I also use Popups because my visitors give response more to popups rather than sliders or fixed content. Similarly its very hard to get content shared so popups work for it too. And its important to get content shared because more sharing equals to more traffic. Popup share buttons are not new, many of use have used them but popup have either 5 or 6 buttons so visitor is limited to share content only to some social networks and may be he or she is not using any of these networks so it will be a waste of time you will not get content shared. So I brought you a new idea, Why don't we use addthis popup sharer, it has all social buttons plus it doesn't need long coding and too many scripts so it doesn't slow down our blogs. So in this post I am going to share addthis popup sharer along with some customization. So you can get popup by the time whe

5 Sites To Submit Your Posts To Boost Traffic Instantly

New bloggers often search "how to boost or increase traffic instantly" and don't find any answer or usually get answers that are not satisfactory. So they head towards fake traffic or seo. Fake traffic is obviously useless because you don't either get money and that traffic is limited because same visitors visit your site again and again for points(traffic exchange) and there is no ad network that pay you for ordinary traffic. So fake traffic is not beneficial that's why bloggers optimizes their blogs for search engines to get traffic that is organic and unique, but the fact is that once your blog is optimized for search engines you will not get traffic in one day but you have to wait for months or for year. Actually it depends on your blog's topic e.g if you have a blog about making money you will get more traffic in less time because every 2nd person is surfing on internet to earn money. So this post is about how can you increase your blog traffic instantly.

How To Show Star Ratings In Google Search Results - Blogger

Google rich snippets allow you to make your site's search results view better to get maximum visitors. And it is seen that sites with rich snippets enabled get more visitor specially sites selling products or sites about review of any ad network or site with cooking recipes. Among Google rich snippets most popular are search box in search results and star ratings widget because most of sites are able to show them for their search results but not all! other rich snippets like logo of company or organization or social profiles in search results appear only for big companies or organization. So in this post I am going to show you how to show star ratings for all posts in Google search results. How to add Google Rich Snippet schema for star ratings in blogger? Step 1: Go to blogger dashboard, go to template and edit html. Step 2: Search for below code: <div class='post-footer'> You will find this code 2 times paste the below code above the second one. Step 3: Copy below c