2

I have an odd redline next to my logo, and I can't for the life of me work out why.

Take a look: http://www.pdf-explode.com.au/index.php

Here's the red line I'm talking about: http://www.bounceapp.com/66618

  • I've tried looking at all the borders, there's no red.
  • searched through backgrounds, no red.
  • inspector can't inspect it.
  • it's not in the image

Let me know if you can find it.

4

4 に答える 4

6

背景が繰り返される(赤い線は文字の一部です)ので、cssDに:を追加しますno-repeat

于 2012-05-16T13:07:05.070 に答える
3

これrepeatは上の背景画像の#menu a.logoです(Dつまり、右側に再び表示されるドキュメントのです)。リピートを削除します。

于 2012-05-16T13:08:07.000 に答える
2

あなたのCSS:

#menu a.logo {
    background: url("../images/logo1.png") repeat scroll 0 0 transparent;
    height: 45px;
    left: 0;
    position: absolute;
    text-indent: -10000px !important;
    top: 5px;
    width: 265px;
    z-index: 10;
}

正しいcss:

#menu a.logo {
    background: url("../images/logo1.png") no-repeat scroll 0 0 transparent; //edited
    height: 45px;
    left: 0;
    position: absolute;
    text-indent: -10000px !important;
    top: 5px;
    width: 263px; //edited
    z-index: 10;
}

あなたのロゴの幅は263px;

于 2012-05-16T13:08:18.393 に答える
2

これは、ロゴが繰り返され始めるためです。線は赤い「D」から来ています。background-repeat: no-repeat;ロゴの幅を約2ピクセル追加または短縮します。

于 2012-05-16T13:08:42.577 に答える