Css3 Slide Style Navigation Bar For Blogger

Today im   gonna explain  how to add  attractive slide style navigation  bar for blogger.Slide style
look amazing.This is not a jquery, im using Css3 and HTML. Check  it  from  below link. you can get itYou can get my all menubar here
Css3+Slide+Style+Navigation+Bar+For+Blogger

Demo

1. Log in to blogger account and Click drop down.
blog-post-option
2. Now select "Template" Like Below.

Select-template

3. Now you can see Live on blog, Click EDIT HTML Button"

4. Now click Proceed button.
   
5. Find this tag by using Ctrl+F    ]]></b:skin>

6. Paste below code Before ]]></b:skin> tag

/* The CSS Code for the menu starts here bloggertrix.com */
navrotatebt {
max-width: 900px !important;
margin: 100px auto;
margin-top: 20px;
}
navrotatebt ul {
list-style: none;
overflow: hidden;
}
navrotatebt li a {
background: #D8D8D8;
border-right: 1px solid #fff;
color: #fff;
display: block;
float: left;
font: 400 13px 'Montserrat Alternates', Arial;
padding: 10px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
width: 80px;
-webkit-transition: transform 1s;
-moz-transition: transform 1s;
}

navrotatebt#nojquery li a:hover, .rotate {
-moz-animation: animrotate 2s;
-webkit-animation: animrotate 2s;
background: #222;
}
@-moz-keyframes animrotate {
100% {background: blue;-moz-transform: perspective( 200px ) rotateY( 360deg );}
}

@-webkit-keyframes animrotate {
100% {background: blue;-webkit-transform: perspective( 200px ) rotateY( 360deg );}
}

7. Go to blogger and click Layout

8. Click Add Gadget and select 'HTML/Javascript

9. Paste below code.

<navrotatebt id="nojquery">

<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</navrotatebt>
Replace # with your links.

10. Now save your HTML/Javascript'.

    You are done...
Tag : CSS, HTML, Menu bar
0 Komentar untuk "Css3 Slide Style Navigation Bar For Blogger"

Back To Top