-1

If you have a look at the following link: http://78.109.168.22/tv - you will notice that in IE8 in the middle of the logo header there is a little black spotted area. I have no idea what it could be!

Has anyone got any ideas? I would love to hear them! It's driving me crazy.

Screenshot of what I'm talking about - https://i.stack.imgur.com/OTOTi.png

Solution was a Drupal skip link ID. I just displayed this id to none in IE8 and it has now be resolved. Thank you all!

rowefx
  • 265
  • 2
  • 9
  • 26

1 Answers1

1

These line of code creating the problem

<div id="skip-link">
        <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
      </div>
Manish Sharma
  • 1,670
  • 14
  • 20
  • You've just made a statement, not an answer – Bojangles Apr 23 '13 at 12:26
  • His statement has answered my question. Thank you very much mani! – rowefx Apr 23 '13 at 12:28
  • 1
    To me it seems as though what your seeing is an alternative header/menu for mobile devices for users who are browsing the website on a mobile device. The complete image looks like the image below. And the Black BAR is probably a drag handle to slide the menu up or down as required. ![enter image description here][1] [1]: http://i.stack.imgur.com/aBNQz.jpg – Zeddy Apr 23 '13 at 12:37
  • 1
    problem is because of .element-invisible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px); overflow: hidden; height: 1px;} ie ignore 1px height add font-size:1px also may solve your problem. try not sure – Manish Sharma Apr 23 '13 at 12:41