Glossy Red-Grey Tabs Menu

This new menu has two different variations. The color combination can either be red in active mode and grey on mouse hover or vice versa. It is a shiny navigation menu that is mainly created for including blogger pages such as Home, Contact, About. That's why I ignored adding a drop down column to it. Very soon we will also learn how to create mega menus with multi columns in drop down view. But first lets see a demo first,

Grey-Red Theme

blogger menu

Red-Grey Theme

glossy tabs menu

 


Live Demo

Add This Menu To Blogger

  1. Go to Blogger > Design
  2. Choose HTML/JavaScript widget
  3. Paste the following code inside it,

<style>
.mbt-red-grey-menu{
border:5px solid #cd0000;
padding:0;
clear:both;
}

.mbt-red-grey-menu{
margin:0px;
padding: 0;
float: left;
font: bold 13px Arial;
width: 100%;
overflow: hidden;
margin-bottom: 1em;
border: 1px solid #625e00;
border-width: 1px 0;
background: black url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOpcjvBrsBjNCmI2e74p3UnsXI-sXGpKstVy292tae1jOumDOYdQim1JKi8RsnD7w-_1kWpQgyeuUdld_EFsZfRLl5QORgIXMbxwvHpwCPtEyTTXwRCbyhh9FOj7QlTuZJn5VmPSnW9Mg/s400/blockdefault.gif) center center repeat-x;
}

.mbt-red-grey-menu li{
display: inline;
}

.mbt-red-grey-menu li a{
float: left;
color: #fff;
padding: 9px 11px;
text-decoration: none;
border-right: 1px solid white;
}

.mbt-red-grey-menu li a:visited{
color: #fff;
}

.mbt-red-grey-menu li a:hover, .mbt-red-grey-menu li a.selected{
color: #fff;
background: transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIJH4BfX4TEtCJNKujmdS8HQ8b-T1-zelzcuT5lOSS8aiDLptKLzPnZzR60nLhFEd-fWV6n-maIr3r9W3EekUftCrzCkXuEszm8nAVe8z1iu_Q3WwXJTIM_gqvqOdd2TK21S7F915FtOU/s400/blockactive.gif) center center repeat-x;
}

</style>

 

<ul  class="mbt-red-grey-menu">
<li><a href="#">Home</a></li>
<li><a href="#" >About Us </a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Sitemap</a></li>
</ul>

  

      Make these changes:

Replace the # sign in each case with related Page URL.

The above code is for Red-Grey theme if you wish to use the other theme instead then simply swap the position of the two image links in the above code (shown in purple).

To add a new link then paste the following code each time you want just before </ul>

<li><a href="#">page-name</a></li>

     4.   Save your widget and drag it just below your blog header. (Blog header is the widget where you add blog title and description)

     5.   Hit the Save button at the top-right corner of Page Elements page

     6.   You are all done!

Visit your blogs to see it working just perfectly. If you would like to select a different menu out of 30-40 menus created by MBT then you can search our blog to find something more exciting. Feel free to let me know if you needed any help. I am sure this menu will let you better organize your blog. Peace brothers. :>

Related Posts:

  • Make Colorful Tables in BlogSpotBlogSpot blogs are rich with options that gives you freedom to design and create whatever you want using CSS and HTML. Blogger post editor doesn't has the option of creating HTML tables but no worries we can make tables with … Read More
  • Create Image Gallery For Blogger With Control OptionsI never thought we could have a light, fast loading, cute and yet extremely controllable Image Gallery or slideshow with play and pause options. Using Jquery, JavaScript and my beloved CSS and HTML and thanks to dynamic drive… Read More
  • 4+ Image Slider Widgets For BloggerThis year we created many image slideshows and image galleries. This widgets can be used for displaying popular posts or your featured posts. It gives great professional touch to your simple blogger blogs. They can easily be … Read More
  • Identify Font Type and Font Color on a WebsiteWhatfont a great chrome extension that lets you easily identify the font family, font size and font color of the text being used on any webpage. It gives you complete details about the type of being used and what other altern… Read More
  • Divide Blogger Header In Two Parts or SectionsA blogger header consists of every single section that appears at the top of your blog. It is a container which contains two important sections which are Logo portion where you add title, logo and description of blog and the … Read More