Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Page text changes on mouseover

  • 5 replies
  • 15 have this problem
  • 12 views
  • Last reply by cor-el

more options

I'm trying to look at a site that REQUIRES compatibility mode in IE be turned on to view properly, but I can't find that option anywhere in Firefox 7.0.1.

I'm trying to look at a site that REQUIRES compatibility mode in IE be turned on to view properly, but I can't find that option anywhere in Firefox 7.0.1.

All Replies (5)

more options

Sorry, Firefox is not able to view web sites that require IE compatibility mode. Those sites use non-standard code that works only in IE.

more options

The site worked before. If you check out the site in question , you'll see it was designed for Firefox and was browser neutral. I DEVELOPED THE SITE! Basically put, as soon as my mouse goes over the text area of the page, it changes the font to bold. This happened in IE as well, but went away when I made IE use compatibility mode.

more options

I see the same in Google Chrome.

Looks that is is caused by a missing close </a> in <a name="skip_nav">


<span class="pathway"><span class="pathway">Home </span>
</span><br><hr>
<P>
<a name="skip_nav">

The currently used HTML5 parser doesn't like such omissions and reopens the a tags for each P container and applies the CSS rules for hover.
It works if I disable the HTML5 parser.

more options

You rock! I've been beating myself up for months looking for this, and it was that simple. Correction made and the site works perfectly. Sorry to report an HTML error as a Firefox error. I should have known better. After all, you're NOT Microsoft!

more options

You're welcome

I used the DOM Inspector and moved the cursor up in the left pane with the computed CSS in the right pane while hovering the mouse on the website until I saw the font-weight bold changing from 700 to 400 and then checked the code of that A element.