How To Add Sub Text Style CSS3 With Hover Effect Navigation Menu Bar For Blogger
1. Log in to blogger account2. Now select Template
3. Now Click EDIT HTML Button
4. Find this tag by using Ctrl+F ]]></b:skin>
5. Paste below code Before ]]></b:skin>
/*CSS Code starts here bloggersstand.blogspot.com */6. Go to blogger and click Layout
#menu1 ul {
list-style:none;
font-family: Georgia, serif;
font-size: 20px;
font-style: italic;
font-weight: normal;
letter-spacing: normal;
line-height: 0.8em;
border:2px solid #000;
border-left:none;
float:left;
clear:both;
margin:10px;
}
#menu1 ul li{
float:left;
}
#menu1 ul li a{
display:block;
text-decoration:none;
background-color:#444;
padding:5px 10px;
color:#fff;
width:140px;
border-right:1px solid #666;
border-left:1px solid #000;
}
#menu1 ul li a span{
display:block;
}
#menu1 ul li a span.title{
border-bottom:1px solid #444;
}
#menu1 ul li a:hover span.title{
border-bottom:1px dashed #f0f0f0;
color:#ef0000;
}
#menu1 ul li a span.text{
visibility:hidden;
font-size:12px;
text-align:right;
}
#menu1 ul li a:hover span.text{
visibility:visible;
}
7. Click Add Gadget and select HTML/Javascript
8. Paste below code
<div id="menu1">*Change All # With Your Links.
<ul>
<li><a href="">
<span class="title">About</span>
<span class="text">Who we are</span>
</a>
</li>
<li><a href="">
<span class="title">Portfolio</span>
<span class="text">What we do</span>
</a>
</li>
<li><a href="">
<span class="title">Blog</span>
<span class="text">What we talk about</span>
</a>
</li>
<li><a href="">
<span class="title">Contact</span>
<span class="text">How to get in touch</span>
</a>
</li>
<li><a href="#">
<span class="title">AddThis</span>
<span class="text">Add This to blogger</span>
</a>
</li>
</ul>
</div>
9. Now save your HTML/Javascript',Done!
If you have any query regarding stylish sub text css3 with hover effect Navigation Menu Bar for blogger Feel free to ask,just drop your comment below.