Problems with hover buttons

kanes

Beta member
Messages
1
I am having problems with getting Front Page 98's hover buttons to
function.
This is the list of codes.... can someone plz help me to solve this
problem..
i reli need it soon

class" codebase="./" width="120" height="24">
<param name="color" value="#000080">
<param name="hovercolor" value="#0000FF">
<param name="textcolor" value="#FFFFFF">
<param name="text" value="C Programming">
<param name="effect" value="glow">
<param name="url" valuetype="ref"
value="http://metalab.uniten.edu.my/~kanes/indexCProg.html">
</applet>

Thanks
 
I see what you are doing, but there is something that you should know...

the effect=glow will only work in internet explorer, (not firefox or opera)...

in truth you may be better doing something like this for your menus...
Code:
<style>
a.menu {
color=000080;
}
a.menu:hover {
colour=0000ff;
}
</style>

<body>
all header and content etc...
...etc...
 <!--menus-->
<a class="menu" href="index.html">home</a>
<a class="menu" href="gallery.html">Gallery</a>
...
...rest of page...

that way it'll work in all browsers. it really does suck when you think you've gotten a great site put together and someone comes alonmg with firefox and tells you it's bad cause it doesn't all work for them!
 
Back
Top Bottom