Mouseovers not working now - not sure why

B

Brenda

http://www.brickwallbuster.com/surname.htm

Could someone please help me with the mouseovers? The mouseovers on HOME -
CONTACT US - SERVICES - PRICING - CATTARAUGUS SURROGATE INDEX - NEWSPAPER
INDEX are working (font changing red) but I seem to have lost the mouseovers
(font changing to red) when I mouse over the letters themselves: A - B - C -
D - etc... I think this happened when I changed the color of the letters...
but I'm not sure where in the code, to get the mouseovers working again.

Unfortunately, I work 99.98% of the time in design view, but I do try to
look at the code and make a few changes in the code to get the effects I
want (usually not knowing what I'm doing.)

Any and all help GREATLY appreciated.

Thank you in advance,
Brenda
 
S

Steve Easton

There has been an inline font style applied, and it is overriding the CSS:
<td width="20%" class="text"><b><a href="asurname.htm">
<font color="#808000">A </font></a></b></td>

Click inside the table, then in the quick tag selector, click the table tag that appears.
This should highlight the entire table containing the letters.
If so, then click Format on the toolbar and then scroll down and click "Remove Formatting"
and then save the page.

--

Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
 
B

Brenda

Steve - thank you. That fixed the problem. That takes the font color back
to a lighter color than I had wanted.

I have tested it several times, and every time I change the color of the
font, I loose the mouseover again. Could you please point me to the code
that sets the color, so I can (somehow) change it to a darker green?

Thank you,
Brenda
 
R

Ronx

Change this:

<table border="0" width="100%" style="border-collapse: collapse">
<tr>
<td width="96%" class="text" colspan="5">Click on the letter
the surname begins with to view the Surrogate Index:<br>
&nbsp;</td>
</tr>

To

<table id="letters" border="0" width="100%" style="border-collapse:
collapse">
<tr>
<td width="96%" class="text" colspan="5">Click on the letter
the surname begins with to view the Surrogate Index:<br>
&nbsp;</td>
</tr>




Then in the style sheet, add

#letters a:link {color: #808000;}

This MUST be after the styles for the hyperlinks, so that the original
link colour is over-ruled for this table.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top