saul
November 28th, 2004, 06:39 PM
I want to learn how to make each item on the menu into it's own box and when your mouse goes over it the colors change kind of like Poke Safari's menu (not Copying ><) So if U know the HTML Code and U please tell me.
Claire
November 28th, 2004, 06:49 PM
There are a few colour changes you can do.
To make a change in the bg colour ...(you have to have a new row in a table for each link)
This is an example of one link:
<TR><TD bgcolor="initial colour" onmouseover="style.backgroundColor='colour you want it to change to';" onmouseout="style.backgroundColor='initial colour again';"><a href="link">Link Title</a></TD></TR>
To make the text change colour when you hover, enter this style code:
<style>
<!--A:hover {text-decoration:none; color: colour u want it to change to}-->
</style>
There are other kinds of hover abilities, like fading in and out of images, and creating an underline/overline etc., so just ask if you want more info ^^
Geometric-sama
December 1st, 2004, 08:45 AM
You want to apply this to the whole paragraph style though. I'll look up a tutorial, my brother saved one somewhere.