我使用wordpress。
user:user
传递:123abc
我希望在滚动页面时始终修复帖子的标题。 http://www.correnteparaobem.com.br/onde-se-encontra-a-casa-de-deus
例如:
我们开了一篇文章,标题我们已经到位了。 一旦进入页面,它就会将其保留在网站之上。 爬上屏幕时,他会回到原产地。
我试图指导我完成本教程:http://pt.w3support.net/index.php?db=so&id=1216114
我将标题更改为div:
< div class="postheader"> < ? php the_title ();> < / div>
我试过了css:
. postheader {
margin: 0.2em 0;
padding: 0;
font-size: 18px;
color: # 3f5e73;
background-color: # ffffff;
color: # 3f5e73;
height: 30px;
position: absolute;
top: 0px;
width: 400px;
z-index: 100;
}
在正文中,这个剧本:
$ (window). scroll (function (e) {
$ el = $ ('. postheader');
if ($ (this). scrollTop ()> 0 & & $ el.css ('position')! = 'fixed') {
$ ('. postheader'). css ({'position': 'fixed', 'top': '0 px '});
}
});
没有得到结果
答案 0 :(得分:0)
在CSS中,使用position: fixed;
。另外,检查代码中的额外空格......