WordPress - 显示在倒栽跳水的蓝色酒吧

时间:2012-07-04 22:13:35

标签: wordpress wordpress-theming

我正在玩基于骨架的响应式wordpress主题并且遇到了烦人的问题。屏幕顶部出现一个薄的蓝色水平条,它不能超过15-18px高度,并且具有绝对定位,因为即使向下滚动它也会保持在页面顶部。我已经使用chrome和firefox(使用firebug)来查找它来自哪里但无济于事,它没有显示在css或源代码中。有没有其他人经历过这个或知道为什么会这样?

N.B。它出现在所有浏览器IE,Chrome& FF。 网址:http://www.produceme.co.nz/

enter image description here

2 个答案:

答案 0 :(得分:2)

你看到的蓝色背景来自你的CSS,你可能有这个:

background:#fcfcfc url(.../images/border_top.png)

在你的体型中,所以只需找到并移除它,你就可以了。

答案 1 :(得分:0)

错误在第1行http://www.produceme.co.nz/?get_styles=css

您有以下定义的

body
{
    background: #fcfcfc url(http://www.produceme.co.nz/wp-content/themes/skeleton/images/border_top.png) repeat-x top center fixed;
    color: #444444;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
}

后台网址是添加它的部分。删除该值,它将为您修复它。