This navigation bar made with CSS & jQuery gets semi-transparent when you scroll down the page and is slightly showing up by fading out gradually becoming almost transparent. When the user hovers over it, the menu becomes opaque again.

1. Log into your Blogger account and select your blog, then go to "Template" and press the "Edit HTML" button.

> Inside the navigation we have some links, a search input and top & bottom buttons making it easier for the user to navigate to the top or bottom of the page.

If you want to add this horizontal menu with CSS/jQuery to a Blogger blog, follow the steps below:
1. Log into your Blogger account and select your blog, then go to "Template" and press the "Edit HTML" button.

2. Click anywhere inside the code area and search using CTRL + F keys, this tag
3. Just above/before the </head> tag, add the following scripts and CSS code for the jQuery menu:
<style type="text/css">#nav{height:35px;border-bottom:1px solid #ddd;position:fixed;top:0;left:0;right:0;background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhc7Mm2mbUuBWOFr_PcbY8zR9JSX4atrxrKDFzjCZAUVeZZuVP-NJZwn8bRaK_RJT90nMlWR5tG8e-wOAYjLLrwZy_U2pL1_rYccJttYw1-OorCCt87AgZQxdNRk72x2jXIY5Ah9eKuRraJ/s1600/navbar.png) repeat-x center left;z-index:999999}#nav ul{height:25px;list-style:none;margin:6px auto 0;width:600px}#nav ul li{display:inline;float:left;margin:0 2px}#nav a{font-size:11px;font-weight:700;float:left;padding:2px 4px;color:#999;text-decoration:none;border:1px solid #ccc;cursor:pointer;background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQAFkgpZHtf4RNSPy6_9g09NkBGSdcPRN0GVGuUJAWb8hZpUsqYO4eyonmO3jLULZrQoDm1q_XA0yrqYxYLWxubd49jbbsDI3AHHQSGcV4fevAwndQxnLVEDsTDimRmizs3QgT4Yrrkt30/s1600/overlay.png) repeat-x center left;height:16px;line-height:16px}#nav a:hover{background-color:#D9D9DA;color:#fff}#nav a.top span,#nav a.bottom span{float:left;width:16px;height:16px}#nav a.top span{background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEj-gIxzumjYZbvU9cUxEzpKf4W16z314GlwFf3RivYQbKerrbkTVGIig_e7LYWBppB-CnuBs5-r9_4egE_ke-h0W7Y9yCJqp4x5irfpH5G3pl_PHIfxThftE4x2Cf9SZFr2R_A2Dh77d5/s1600/top.png) no-repeat center center}#nav a.bottom span{background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiX7Sa2eAcpcfey5ARy3t8uOS22GeSDtzvsFh-iPccPPkFiT-VEF1mQjFO8pqxfoULSHxYXtK2cQp2tF-Zfr_S0r9EviaszXoZqeyJ4V0IvslkP980oUxILT-iZgyWEvwagKTYq5Z87B_mE/s1600/bottom.png) no-repeat center center}#nav ul li.search{float:right}#nav input[type="text"]{float:left;border:1px solid #ccc;margin:0 1px 0 50px;padding:2px;line-height:16px}input.searchbutton{border:1px solid #ccc;padding:1px;cursor:pointer;width:26px;line-height:16px;background:#E8E9EA url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2V1QblkFICujhxB_he6x-90b-mavnuP_bZN-WZjyTQpCGfeWA4PX7RC0JgtmsSiSW-QHdhfg3ILUULSvtxK0vtuYHpgTAn8MJ0UvxPc_ndDfZN_mflBdUSTgsoKFOm13MCP2mU-_MWSr_/s1600/search.png) no-repeat center center}input.searchbutton:hover{background-color:#D9D9DA}</style><script type="text/javascript" src="https://code.jquery.com/jquery-1.3.2.min.js"></script> <script type="text/javascript">//<![CDATA[$(function(){$(window).scroll(function(){var a=$(window).scrollTop();0!=a?$("#nav").stop().animate({opacity:"0.2"},400):$("#nav").stop().animate({opacity:"1"},400)}),$("#nav").hover(function(a){var b=$(window).scrollTop();0!=b&&$("#nav").stop().animate({opacity:"1"},400)},function(a){var b=$(window).scrollTop();0!=b&&$("#nav").stop().animate({opacity:"0.2"},400)})});//]]></script>
COMMENTS