
To implement the same style in your Blogger pages widget,you must first remove the CSS associated with this navigation menu,that could be either with
.PageList
or #PageList1
.Then add the following CSS
just above ]]></b:skin>
.PageList{
width:800px;
margin:0 auto;
}
.PageList ul{
padding:0;
margin:0;
list-style:none;
}
.PageList ul li{
float:left;
}
.PageList ul li a{
font:300 17px 'open sans',sans-serif;
color:#fff;
text-decoration:none;
padding:10px 15px;
background:#00bfff;
display:block;
position:relative;
}
.PageList ul li a:after{
content:"";
height:100%;
position:absolute;
background:rgba(0,0,0,0.5);
width:0;
top:0;
left:50%;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
-webkit-transition: all .3s ease-in-out;
}
.PageList ul li a:hover:after{
left:0;
width:100%;
}
Post A Comment:
0 comments: