Quote:
|
Originally Posted by Spreegem
Yes. . . but I was more looking for being able to customise my menu, have a black background with orange hyperlinks or soemthing like that. Could that be done with Javascript or HTML, or would I have to use flash if I wanted to do something like that?
|
You can do that with JavaScript and HTML. For example:
<select name="menu" size="1" style="background-color:#000000" onChange="Your javascript function">
<option value="http://yoursite.com">yoursite.com</option>
<option value="http://yoursite2.com">yoursite2.com</option>
<option value="http://yoursite3.com">yoursite3.com</option>
</select>
The above code will produce a drop down with a black background. You will have to build a function in Javascript that redirects the user to the website that they choose in the drop down. As far as the orange hyperlinks go, you can use CSS.
Hope this helps.