1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*========統計欄-第一個噗寶(會在文字底下,超出預設範圍會裁切)========*/
#dash-stats {
background: url(網址);
background-repeat: no-repeat;
background-position:55px 0px
}

/*========統計欄-第二個噗寶(會在文字上,可放到任何地方)========*/
.dash-segment-stats:before {
/*這行不用動*/ display:block; position:absolute;
/*上下位置*/ top:95px; /*可改bottom*/
/*左右位置*/ left:5px; /*可改left*/
/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
/*圖片*/ content:url(網址);
}
/*========統計欄-第三個噗寶(會在文字上,可放到任何地方)========*/
.dash-segment-stats:after {
/*這行不用動*/ display:block; position:absolute;
/*上下位置*/ top:10px; /*可改bottom*/
/*左右位置*/ right:0px; /*可改left*/
/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
/*圖片*/ content:url(網址);
}