Missing a real menubar on you Blog? This hack explains how you can add a simple menubar to the top of your Blog. It is in fact a simple link list, and that is a standard page element of Blogger Beta. I have added a new section at the top of the Blog Page, and the link list is inside that section. Of course there are some tricks to play, such as hiding the link list title, and showing the links list elements side by side. Here is how it is done.

In this Page Layout you can see where I have added the Menubar. The code of this section is highlighted in red:
<div id='header-wrapper'>
<b:section class='menubar' id='menubar' maxwidgets='1' showaddelement='yes'>
<b:widget id='LinkList2' locked='true' title='Menubar' type='LinkList'/>
</b:section>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='false' title='Beautiful Beta (Header)' type='Header'/>
</b:section>
</div>
To the CSS-part of your template, add coding for the menubar-id:
#menubar h2 {display:none;}
#menubar ul {
list-style: none;
}
#menubar li {
float: left;
}
#menubar a:link, #menubar a:visited, #menubar a:hover {
padding: 5px;
display: block;
color: $headerTextColor;
}
#menubar a:hover {
background-color: $headerCornersColor;
}
The menubar title is hidden, so that only the options are visible.
The list-elements are set to none, so that there are no bullets in front of the menu options. And if a menu-option is hovered over, it is highlighted.
Popular
-
Elly Tran Ha is a hot Vietnamese girl, she looks so hot and sexy in a red bikini, enjoy these sexy pictures of Elly Tran Ha in bikini.
-
Paris Highlights: Fall 2011 Ready-to-Wear ~ Fashion And More
-
The 64th annual Cannes Film Festival is officially under way and day one is already shaping up to be a good one for celebrity beauty sightin...
-
Hotgirl Mi Tran is a member of “Angel” girl band, including Hoang Thuy Linh, Tra My Angel and Mi Tran. She is also trying herself...
-
Better late than never, here are some pics of Kim Ha-Yul from last week CJ Super Race Round 4 As usual, she just looks amazing, whoa!!!! ...
-
How to add the Google Translate Mini-Flags Widgets to blogger: 1.Login to your blogger dashboard-->Layout > Page Elements 2.Click ...


