如何去除博客页面底部的灰色条?
How to remove the gray bar from the bottom of page in blogger?
我网站的每个页面底部都有一个灰色条。它不会出现在标签页上。我已经尝试了所有 post-页脚设置,但无法摆脱它。帮助赞赏。我的网站是 www.tutorhubllc.com
谢谢
我已经在网上搜索过了。还没找到解决方案。
为了做到这一点,您必须从博客页面的 #comment
元素中删除填充。使用以下条件定位博客页面,将其放在 </head>
之前
<b:if cond='data:view.isPage'>
<style> #comments { padding: 0 } </style>
</b:if>
我网站的每个页面底部都有一个灰色条。它不会出现在标签页上。我已经尝试了所有 post-页脚设置,但无法摆脱它。帮助赞赏。我的网站是 www.tutorhubllc.com 谢谢
我已经在网上搜索过了。还没找到解决方案。
为了做到这一点,您必须从博客页面的 #comment
元素中删除填充。使用以下条件定位博客页面,将其放在 </head>
<b:if cond='data:view.isPage'>
<style> #comments { padding: 0 } </style>
</b:if>