Wire Frame Aura Menu for Blogger


This is a beautiful Aura Blogger menu in this menu an eclips gradient is used when mouse is over a tab the gradient hovers.

Images used:

Light Green
http://4.bp.blogspot.com/-P46m0iOr3l4/TlDDF4rN5_I/AAAAAAAABTE/fj5F2CZF0y0/s1600/lightgreen.gif
Light Yellow
http://2.bp.blogspot.com/-DMiFkMuOs1Y/TlDDH6dZO8I/AAAAAAAABTM/dXf-qNhR2z4/s1600/lightyellow.gif
Light Red
http://3.bp.blogspot.com/-pVSrPjHCY5Y/TlDDHCHSu1I/AAAAAAAABTI/JYQYsjtriqM/s1600/lightred.gif

Demo:

How to add to Blogger?

step 1:

To add this CSS meun to Your Blog simply Copy the below code and go to Design>Page element>and add Html/Javascript widget, Past the code in it and click on Save, Drag the Widget below the Header.
<div class="wireframeauramenu">
<ul>
<li><a href="#">Css Blogger</a></li>
<li><a href="#">Blogger Menus</a></li>
<li><a href="#">blogger Layouts</a></li>
<li><a href="#">Blog Design</a></li>
</ul>
</div>

step 2:

To add CSS code to your Blog, Go to Design>Edit HTML, find ]]</b:skin> place the CSS code above it and Save Template OR Go to Template Designer>Advanced>Add CSS, Past the code and click on Apply to Blog, you can cnage CSS if you can, the changes done in the above CSS i frame will be displayed on your blog...You Have Done..!
.wireframeauramenu{
font-weight: bold;
font-size: 90%;
width: 100%;
}

.wireframeauramenu ul{
border: 1px solid #BBB;
padding: 5px 0;
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
overflow: hidden;
}

.wireframeauramenu ul li{
display: inline;
}

.wireframeauramenu ul li a{
color: #494949;
padding: 6px 12px 6px 6px;
margin: 0;
text-decoration: none;
border-right: 1px dashed #BBB; /*right border between menu items*/
}

.wireframeauramenu ul li a:hover{
color: black;
background: transparent url(http://2.bp.blogspot.com/-DMiFkMuOs1Y/TlDDH6dZO8I/AAAAAAAABTM/dXf-qNhR2z4/s1600/lightyellow.gif ) center center no-repeat; /*background of menu item onMouseover*/
}
thanks to

Comments