我已经非常彻底地修改了wordpress主题,以创建我的新网站的第一个版本。我试图摆脱这个1px虚线边框,但不能为我的生活找到它所在的元素。 ARG!
该网站为http://dev.timelesscreations.us,我所谈论的虚线边框位于侧栏下方,右侧是页脚上方。
谢谢!
答案 0 :(得分:2)
这是由样式表中的CSS规则引起的:
#footer {
....
border-top: 1px dotted #000;
....
}
元素:
<div id="footer"> .... </div>
答案 1 :(得分:1)
使用Firefox Firebug插件或Chrome开发者工具(F12)进行查找。
答案 2 :(得分:1)
在第144行的style.css中,您在#footer上设置了虚线边框。删除它。
答案 3 :(得分:1)
its in style.css line 62
#content
{
background: url("images/bk_content.png") repeat-y scroll 100% 0 transparent;
}
just REMOVE that property
background: url("images/bk_content.png") repeat-y scroll 100% 0 transparent
from #container css
cheers