fastbill
11-06-2008, 07:28 PM
Sorry for the long-winded tale of woe, but this one's really got me stumped :(.
I'm building a new website that currently has more than 75 pages. On one--and only one--page, Firefox does something unusual when the mouse passes over text or images: FF either displays an underline beneath the current text, or in some cases it changes the text color to blue (as if the text were a hyperlink). FF does not actually make the text become a hyperlink--it displays the normal I-beam text cursor. IE7 doesn't do anything unusual on this page. I'm running FF 3.0.3.
You can see this behavior throughout this page on my test site at
http://test.civicleague.net/t3/FCT-Shows.php.
Scroll down about 2/3 of the way, to "Our Next Production" -- no problem with this text line. As you move your mouse downward, the next 2 lines ("A Mystery...") become underlined. Moving further down, the next 2 lines ("An original...") become both blue text and underlined!
The HTML for this part of the page is:
<tr>
<td align="center" valign="top">
<p>
<span class="type16head">Our Next Production</span>
</p>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a name="pirates" />
<p>
<span class="type16subhead">A Mystery Dinner Experience</span>
<br /><span class="type16head"><i>The Pirates of Framingham</i></span>
</p>
<p class="type16subhead">
An original stage play
<br />Written by the FCT Writers Group
</p>
...
The two styles are defined in a .css file this way:
.type16head {
font-size: 18px;
font-weight: bold;
color: #6E8869;
padding: 3px 8px 7px 8px;
text-align: left;
}
.type16subhead {
font-size: 14px;
font-weight: bold;
color: #6E8869;
}
It seems that if the "class=" attribute is in a <span>, FF underlines the text, and if the "class=" attribute is in a <p> it both underlines and changes to blue. I use these 2 "class=" values (type16head and type16subhead) throughout the site, and all other pages display normally in FF.
I do not see anything that would cause this unusual FF behavior, and would appreciate any and all suggestions.
Thanks!
fastbill
I'm building a new website that currently has more than 75 pages. On one--and only one--page, Firefox does something unusual when the mouse passes over text or images: FF either displays an underline beneath the current text, or in some cases it changes the text color to blue (as if the text were a hyperlink). FF does not actually make the text become a hyperlink--it displays the normal I-beam text cursor. IE7 doesn't do anything unusual on this page. I'm running FF 3.0.3.
You can see this behavior throughout this page on my test site at
http://test.civicleague.net/t3/FCT-Shows.php.
Scroll down about 2/3 of the way, to "Our Next Production" -- no problem with this text line. As you move your mouse downward, the next 2 lines ("A Mystery...") become underlined. Moving further down, the next 2 lines ("An original...") become both blue text and underlined!
The HTML for this part of the page is:
<tr>
<td align="center" valign="top">
<p>
<span class="type16head">Our Next Production</span>
</p>
</td>
</tr>
<tr>
<td align="center" valign="top">
<a name="pirates" />
<p>
<span class="type16subhead">A Mystery Dinner Experience</span>
<br /><span class="type16head"><i>The Pirates of Framingham</i></span>
</p>
<p class="type16subhead">
An original stage play
<br />Written by the FCT Writers Group
</p>
...
The two styles are defined in a .css file this way:
.type16head {
font-size: 18px;
font-weight: bold;
color: #6E8869;
padding: 3px 8px 7px 8px;
text-align: left;
}
.type16subhead {
font-size: 14px;
font-weight: bold;
color: #6E8869;
}
It seems that if the "class=" attribute is in a <span>, FF underlines the text, and if the "class=" attribute is in a <p> it both underlines and changes to blue. I use these 2 "class=" values (type16head and type16subhead) throughout the site, and all other pages display normally in FF.
I do not see anything that would cause this unusual FF behavior, and would appreciate any and all suggestions.
Thanks!
fastbill