Home » » Horizontal Menu Using Only CSS3 For Blogger

Horizontal Menu Using Only CSS3 For Blogger

Written By Unknown on Sunday, May 19, 2013 | 5:24 AM


Live Menu Demo ▼


How To Add This Menu To Blogger?


  1. Go to Blogger Dashboard > Layout
  2. Click On Add a Gadget Link Tab (Below Header)
  3. Paste Code And Save It.

Click On Image To Enlarge


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<style type="text/css">
/* Only CSS3 Horizontal Menu For Blogger By http://readyblogger.blogspot.com/ */
div.topbar {
 height16px;
 background#e16031;
}
ul.claybricks {
 font-weightbold;
 width100%;
 background#e3e490;
 padding6px 0 6px 0;
 margin0;
 text-alignleft;
        font-family: calibri;
}
ul.claybricks li {
 displayinline;
}
ul.claybricks li a {
 colorblack;
 padding6px 8px 4px 8px;
 margin-right20px;
 text-decorationnone;
}
ul.claybricks li a:hover, ul.claybricks li a.selected {
 colorwhite;
 background#5d4137;
 background: -moz-linear-gradient(top#5d4137 0%#41251b 12%#2c0f05 100%);
 background: -webkit-gradient(linear, left topleft bottom, color-stop(0%,#5d4137), color-stop(12%,#41251b), color-stop(100%,#2c0f05));
 background: -webkit-linear-gradient(top#5d4137 0%,#41251b 12%,#2c0f05 100%);
 background: -o-linear-gradient(top#5d4137 0%,#41251b 12%,#2c0f05 100%);
 background: -ms-linear-gradient(top#5d4137 0%,#41251b 12%,#2c0f05 100%);
 background: linear-gradient(top#5d4137 0%,#41251b 12%,#2c0f05 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d4137', endColorstr='#2c0f05',GradientType=0 );
 -moz-box-shadow: 0 0 5px #595959;
 -webkit-box-shadow: 0 0 5px #595959;
 box-shadow: 0 0 5px #595959;
 padding-top17px;
 padding-bottom6px;
}
/* Only CSS3 Horizontal Menu For Blogger By http://readyblogger.blogspot.com// */
</style>
<div class="topbar">
</div>
<ul class="claybricks">
 <li><a href="http://readyblogger.blogspot.com/">Home</a></li>
 <li><a href="#">CSS Codes</a></li>
 <li><a href="#">Forums</a></li>
 <li><a href="#">JavaScript</a></li>
 <li><a href="#">Gallery</a></li>
 <li><a href="http://readyblogger.blogspot.com/">Blogger Widgets</a></li>
</ul>

Now replace the links and link name with your own in above highlighted lines.

Finally save it and you are done :)

0 comments:

Post a Comment