DHTML Effects

J

jellybelly

I tried to use the DHTML Effects in frontpage 2002 so that
when you mouseover a word, the text changes color. It
will not work when i go to look in my browser. If i check
the underline box, that will work.

any ideas why the color text change option won't work???

Merci
 
J

Jim Buyens

-----Original Message-----
I tried to use the DHTML Effects in frontpage 2002 so
that when you mouseover a word, the text changes color.
It will not work when i go to look in my browser. If i
check the underline box, that will work.

any ideas why the color text change option won't work???

I just tried this and it worked fine in IE6.

What browser were you using?

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)
|/---------------------------------------------------
*----------------------------------------------------
 
J

Jim Buyens

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)
|/---------------------------------------------------
*----------------------------------------------------
 

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

Similar Threads


Top