我正在使用基于骨骼的wpbootstrap主题。我注意到我的网站顶部有一条白色的带子,我无法确定是什么导致了它,但我终于找到了答案。标记具有42px属性的填充。我已经尝试在css文件中覆盖它,但因为它加载在wp\\u head()中,并且包含!重要的是,它似乎不起作用。代码如下:
收割台的一部分。php
wordpress head functions
<?php wp_head(); ?>
end of wordpress head
已在网站上加载HTML:
<style type="text/css" media="screen">
html { margin-top: 32px !important; }
* html body { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
* html body { margin-top: 46px !important; }
}
</style>
我的习惯。css:
html {
margin-top: 0 !important;
}
任何帮助都将不胜感激