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...

Apple Style Horizontal Menu For Blogger With Search Box

Apple style horizontal menu for blogger with search box | 101helper blogger menus

In my previous post I have shared a 3D menu for blogger and now in this post I am back with a new blogger menu. Its a stylish Apple(Iphone) style horizontal menu. It is designed with pure CSS, there is no use of jquery. It has a neat and clean design with a decent color, look and responsive effect. A search box is also floating on right hand side of this menu which has also a responsive design i.e it becomes long when it is hovered by mouse. Another amazing effect in this menu is that when search box is used the whole menu shrinks. You can take a look in below image. Hope you like it:

Screenshot:


Apple style horizontal menu for blogger with search box | 101helper blogger menus

How to add Apple style horizontal menu in blogger:

You can add this menu to your blog in few simple steps. Its so easy you just have to follow below steps and you are done. At the end of this tutorial, I will explain how to customize this menu according to your choice. So lets begin! follow me to add this menu in your blog:

Step 1: Like always go to blogger dashboard :p

Step 2: Select template in the menu on left side and click on edit Html.

Step 3: Click anywhere inside the template code and search for </header>.

Step 4: Copy below code and paste it just below </header>:

<div>
<div class="navMenu expander">
<form action="">
<input type="text" />
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">Gallery</a>
<a href="#">Stores</a>
<a href="#">Contact</a>
</form>
</div>
</div>

Step 5: Make a new search for ]]></b:skin> and just above it paste the below CSS code: 

<style>
html { font-family: helvetica }

.navMenu {
    height: 36px;
    line-height: 36px;
    width: 900px;
    /* CSS 3 */
    background-image: linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -o-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -moz-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -webkit-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -ms-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.11, rgb(170,170,170)), color-stop(0.77, rgb(238,238,238)) );
    border-radius: 5px;
}

.navMenu a {
    color: #333;
    border-right: 1px solid rgba(255,255,255,.5);
    display: inline-block;
    float: left;
    font-size: 12px;
    padding: 0 15px;
    text-align: center;
    text-shadow: 0 1px 1px #FFF;
    text-transform: uppercase;
    text-decoration: none;
    width: 115px;
    /* CSS3 */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navMenu a:hover { background-color: rgba(0, 0, 0,.05) }

.navMenu input {
    background: url(http://cssdeck.com/uploads/media/items/4/4yK4Jqj.jpg) 5px center no-repeat #FFF;
    border: 1px solid #AAA;
    color: #666;
    float: right;
    font-size: 11px;
    margin: 7px 32px 0 0;
    opacity: 0.6;
    outline: none;
    padding: 3px 5px 3px 20px;
    width: 80px;
    /* CSS3 */
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navMenu input:hover { opacity: 1 }

.navMenu input:focus {
    opacity: 1;
    width: 180px;
}

.navMenu input:focus ~ a { width: 95px }
</style>

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

Customization:

  • Replace hashes(#) with likes of your pages.  
  • To change name of any button/tab replace its name with desired name for example if you wish to change products to tips and tricks, simple replace it with tips and tricks in the code used in step # 4. The overall code should look like below code:

<div>

<div class="navMenu expander">
<form action="">
<input type="text" />
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">Gallery</a>
<a href="#">Stores</a>
<a href="#">Contact</a>
</form>
</div>
</div>
  • To change width or height of the menu make changes in highlighted piece of code used is in step # 5

Basic customization is discussed above, if you wish to make further customization feel free to ask me in comments below.

Share you experience with me by giving feedback below. Follow by Email to get instant updates about blogger menus in your inbox. Share this post with others and help me spread 101Helper.

Search tags: Apple style horizontal menu for blogger with search box, neat and clean menu for blogger, Stylish menu with search box for blogger, Apple style menu for blogger, simple horizontal menu for blogger, get free menus for blogger, 101Helper menus for blogger blog.

Comments

Popular posts from this blog

Blogger Not Accepting Javascript / Error Parsing XML - Solved !

If you are blogging for even 2 months you must have seen this error once when you tried to add a javascript in you blog theme. This error appears when a javascript contains some symbols like $ or & or sometime =. All these errors show error when theme is saved. and the error says "Error parsing XML, line number, column number: The reference to entity "version" must end with the 'example' delimiter" . As shown in above image, blogger is not accepting Facebook like button code and showing error. To solve this error I have to simply make this code acceptable by blogger. You might have problem saving codes of some ads like media.net ads, chitika ads, bidvertiser ads etc all these ads are sometimes not accepted by blogger so you can fix them by following this post and run ads or custom scripts. How to add javascript codes in blogger without parsing error ? Follow below steps: (1). Grab the javascript code which you want to fix in to a notepad or paste it in y...

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...

How To Setup Google Custom Search Box In Two Pages In Blogger

Do you use Google webmaster tools? if yes then I am sure that you are aware of Google custom search engine. Google custom search engine is a feature of Google webmaster tools which lets you to create a custom search engine for your blog or site and you can add it your blog also. It works on javascript and doesn't need any experience in Html or java. All you need is to setup search engine for your blog. You can read a post in which I have shared some search box where I have mentioned Google custom search engine too. You can read that post and create a custom search engine for your blog by following it, if you haven't setup a search engine yet. Click here to read that post. In this post I will tell you how to add Google custom search in blogger(two pages). If you didn't get me that what am I talking about then read below paragraph. What is this article about? This post is about adding Google custom search in blogger in two pages. Let me explain it more accurately. Google pro...