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
/*噗浪小動物,位於左邊---------------------------------------*/
#dynamic_logo img {opacity:0}/*這行用來隱藏噗浪生物*/

#dynamic_logo{
height: 255px;/*根據圖片的高度做這項數值的修正,圖片高是300就寫300*/
width: 255px; /*根據圖片的寬度做這項數值的修正,圖片寬是300就寫300*/
margin-top: 27%;/*圖片距離頂部的高度,0%是最上,100%是最下,覺得還不夠上或下可以用-10%或以此類推*/
margin-right:80%; /*圖片的位置,0%是最右,100%是最左,覺得不夠左或不夠右可以用-xx%*/
background-repeat: no-repeat;/*讓圖不會重複出現*/
background-image: url(https://images.plurk.com/ZL0m9Ik0bdgylPiCBUcBv.png);/*你要用的那張圖的網址*/
}


/*謝林趴趴回應數*/

.cboxAnchor[data-type="plurk"]>table{
position: relative;
}

.cboxAnchor[data-type="plurk"]>table::before{
content:"";
color:red;
position: absolute;
width:100px;
height:75px;
right: 200px;
top:-66px;
background-image:url(https://images.plurk.com/6DO9sglIugO0yMgh2q1Kmo.png); /*可替換圖片*/
z-index:100;
background-size:contain;
background-repeat: no-repeat;
}