I find the header drawer just doesn't show right on my blogger
Do any one knows what's wrong? How can I fix it?
Here's my blog: http://iotxshon.blogspot.com/2013/08/bug.html
I find the header drawer just doesn't show right on my blogger
Do any one knows what's wrong? How can I fix it?
Here's my blog: http://iotxshon.blogspot.com/2013/08/bug.html
这是一个已知的博客错误
转到仪表板,从下拉菜单中选择模板,然后编辑 HTML。然后向下滚动,直到在模板底部看到以下行:
<script language='javascript' type='text/javascript'>
setTimeout(function() {
blogger.ui().configure().view();
}, 0);
</script>
</body>
</html>
将超时值从 0 更改为 1000:
<script language='javascript' type='text/javascript'>
setTimeout(function() {
blogger.ui().configure().view();
}, 1000);
</script>
</body>
</html>