无法从容器中删除边框

时间:2014-04-03 15:34:34

标签: css wordpress border

如何删除容器内的边框:

http://lapetiteorgie.org/Clemens/wordpress/?page_id=710

我无法用萤火虫找到它......

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

下面的CSS应该这样做:

media="all"
hr {
    border: none;
}

这将影响hr元素,其完整的CSS目前是:

hr {
  border: none; /* setting this to none removes the line */
  border-width: 1px 0 0;
  clear: both;
  margin: 30px 0 30px 0;
  height: 0;
}

如果您还想删除标题下的边框,也请更改

media="all"
.navibg {
    background: url(images/whitebg.png);
    border-bottom: none;
}