Traveling

30 August 2016

Membuat Popular Post Blog dengan Nomor part 1


Bagaimana cara membuat nomor popular post di blog

popular post part 1

  1. Pertama-tama masuk ke akun Blogger anda
  2. Masuk ke bagian Template
  3. Dan klik Edit HTML
  4. Search for </b:skin>.  Click the black arrow to expand the code.
  5. Simpan kode dibawah ini tepat diatas kode </b:skin>

.popular-posts ul {
padding-left: 0px;
counter-reset: popcount;
}
.popular-posts ul li:before {
list-style-type: none;
margin-right: 15px;
padding: 0.3em 0.6em;
counter-increment: popcount;
content: counter(popcount);
font-size: 16px;
background: #359bed;
color: #ffffff;
position: relative;
font-weight: bold;
font-family: georgia;
float: left;
border: 2px solid #dddddd;
}
.popular-posts ul li {
border-bottom: 1px dashed #dddddd;
}
.popular-posts ul li:hover {
border-bottom: 1px dashed #696969;
}
.popular-posts ul li a {
text-decoration:none; color:#5A5F63;
}
.popular-posts ul li a:hover {
text-decoration:none;
}

coaba

.blogooblok (script kotak di blog ini)

Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : Membuat Popular Post Blog dengan Nomor part 1