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

/*========噗幣欄-第二個噗寶(會在文字上,可放到任何地方)========*/
#dash-profile:before {
position:absolute;
/*圖片*/ content:url(網址);
/*距離右側*/ right:-655px; /*換成left就是距離左側*/
/*距離下方*/ bottom:8px; /*換成top就是距離上方*/
}

/*========噗幣欄-第三個噗寶(會在文字上,可放到任何地方)========*/
#dash-profile:after {
position:absolute;
/*圖片*/ content:url(網址);
/*距離右側*/ right:-280px; /*換成left就是距離左側*/
/*距離下方*/ bottom:100px; /*換成top就是距離上方*/
}