문제

How can I remove the borders inside the container:

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

I can`t find it with firebug...

Thanks for your help in advance.

도움이 되었습니까?

해결책

The below CSS should do it:

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

This will affect the hr element, its full CSS currently is:

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

If you also want to remove the border under the header, also change

media="all"
.navibg {
    background: url(images/whitebg.png);
    border-bottom: none;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top