|
“在线好友”原来位置的代码是:
.bottomstatus{ width:220px; height:27px; bottom:0px; right:0px; position:fixed; z-index:99999;}
大概解释一下主要的几句: .bottomstatus 就是指那个在线好友的模块的名字 width:220px;宽度 height:27px;高度 bottom:0px;距离底部的距离 right:0px;距离右边的距离
还有px是一个距离单位,大家只要更改right和bottom两个就可以了 比如,距离底部10px,右边100px,代码如下:
.bottomstatus{ width:220px; height:27px; bottom:10px; right:100px; position:fixed; z-index:99999;}
大家自己更改参数确定你想要的位置。
|