I am using IE6 also. In the dialog box that comes up, can
you just click font color to change, or do you need to
fill out all the options (ie name of font, size, etc)?
my page is:
www.yourmarketingneedshelp.com
The rollover effects are supposed to be on Our Manifesto, Our
Credentials, and so forth, right? Those rollovers are working fine for
me.
Have you disabled JavaScript somehow? To block pop-up advertising,
perhaps?
BTW, if all you want are hyperlinks that change color, you don't need
to use rollovers at all. Just code a set of CSS rules like this:
a.rovr { color: #ffffff; text-decoration:none;
background-color:#cccccc; }
a.rovr:link { background-color:#cccccc; }
a.rovr:visited { background-color:#cccccc; }
a.rovr:hover { background-color:#cc0000; }
and then code your hyperlinks:
<a class="rovr" href="manifesto.htm">Our Manifesto</a>
Of course, you can add any additional CSS properties you want to any
of these rules. For example, if you want such hyperlinks to fill the
horizontal width of their container, add
display: block;
to the first rule.
Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------