I'm not sure what you mean by blend.
About the attributes. The type attribute is required for both script and style tags. For a script tag:
Code:
<script type="text/javascript" . . .
for a style tag:
Code:
<style type="text/css" . . .
It is also required for link tag that imports style:
Code:
<link rel="stylesheet" type="text/css" . . .
The language attribute was never used for the style tag, and is deprecated in the script tag. Deprecated means you can still use it, but that the results are unpredictable, and likely to become more so, as time moves forward.
This part of the on page code (with corrections) is the only place for color I found (it is the menu's background color):
Code:
<script type="text/javascript">
//Top Nav Bar I v2.1- By Constantin Kuznetsov Jr. (script@esolutiononline.com)
//Modified by Dynamic Drive for NS6/Opera6 compatibility and code streamlining March 4th, 2002
//Visit http://www.dynamicdrive.com for this script
var keepstatic=1 //specify whether menu should stay static 0=non static (works only in IE4+)
var menucolor="#000000" //specify menu color
var submenuwidth=150 //specify sub menus' width
</script>
It appears that in menu.js there is also a setting for the text color:
Code:
this.fontColor = "black";
But in there it says:
default font settings. Don't change. Instead, modify stylesheet in sample.htm
That would be (also corrected) this:
Code:
<style type="text/css">
all.clsMenuItemNS, .clsMenuItemIE{text-decoration: none; font: bold 12px Arial; color: white; cursor: hand; z-index:100}
#MainTable A:hover {color: yellow;}
</style>
Bookmarks