http://phplist.xxmn.com/test.html
如何使实时图表图像向右?
<script src="http://chatserver.comm100.com/js/LiveChat.js?siteId=117659&planId=646&partnerId=-1" type="text/javascript"></script>
我下载了js
文件(http://chatserver.comm100.com/js/LiveChat.js
)并将其上传到我网站的目录。并在代码前面声明了这些变量。
(
var siteId=117659;
var planId=646;
var partnerId=-1
)
但它无法正常工作,为什么?如何纠正它。
答案 0 :(得分:0)
由于您无法控制经常将元素移到左侧的脚本,因此使用!important
添加自己的样式表。
<style>
#comm100_FloatImageButton {
position: fixed;
top: 10px;
left: auto !important; /* This style will not be overridden by the script */
right: 0 !important; /* This property will neither be overridden*/
}
</style>