|
3-State Hi-Lite Menu
Instructions::
The code of Step 2 illustrates what must be done to a standard table to have the effect applied to its cells. Firstly, have present the onMouse...code inside the <table> tag itself, as follows:
<table onMouseover="over_effect(event,'outset')" onMouseout="over_effect(event,'solid')" onMousedown="over_effect(event,'inset')" onMouseup="over_effect(event,'outset')" style="background-color:#F0F0F0">
Secondly and finally, for each of the table cells (<td>) that you wish the effect to be added to, add the class=... code inside it:
<td class="menulines">.......</a>
This goes in the HEAD of your document.
|
|