网站顶部固定代码
以下代码添加到网站常规设置>网站基本设置>head区中
<style>
#adDiv{display:none;}
#top_all{
position: fixed;
top: 0px;
left:0px;
margin: 0px auto;
width: 100%;
z-index:19891219;
}
< /style>
< script>
$(function(){
$("#adDiv").remove();
$(document.body).css("padding-top",$("#top_all").height()+"px");
});
< /script>