Is there a simple way to have the text change colour when the mouse passes over without using an image rollover.
I seem to recall seeing something which will only work in IE that uses a .css file
Printable View
Is there a simple way to have the text change colour when the mouse passes over without using an image rollover.
I seem to recall seeing something which will only work in IE that uses a .css file
Yes you can do it with css either in an external style sheet or embed the style in your html code.
if you put the following inbetween the <head> and </head> tags
<style type="text/css">
a:hover {color: #ff9900}
</style>
it will turn your links orange as the mouse passes over them.
check out http://www.w3.org/Style/CSS/ for the low down on cascading style sheet, there is loads of impressive stuff you can do with it.
Hope this helps