multipull roll over

can naybody help me or send me some code ive got a table of contents <br />
<br />
introduction pg1<br />
operations manual <br />
stand<br />
arch<br />
<br />
thats the table and then ive got an image but for each option from the operations manual the text rollsover (red)<br />
and part of the image rolls over in red<br />
i think its a simple process but im a graphics designer not a web designer and ive had no previous html trianing so can anyone help<!--content-->well....try this:<br />
<br />
<table><br />
<tr><br />
<td style="color:color1"onmouseover="style.color='color2'; your_function_that_changes_imgs()" onmouseout="style.color='color1'"><br />
introduction pg1 <br />
</td><br />
</tr><br />
<tr><br />
<td style="color:color1"onmouseover="style.color='color2'; your_function_that_changes_imgs()" onmouseout="style.color='color1'"><br />
operations manual <br />
</td><br />
</tr><br />
<tr><br />
<td style="color:color1"onmouseover="style.color='color2'; your_function_that_changes_imgs()" onmouseout="style.color='color1'"><br />
stand <br />
</td><br />
</tr><br />
<tr><br />
<td style="color:color1"onmouseover="style.color='color2'; your_function_that_changes_imgs()" onmouseout="style.color='color1'"><br />
arch<br />
</td><br />
</tr><br />
</table><br />
<br />
NOTE: COLOR1 IS YOUR COLOR OF TEXT WHEN YOU HAVENT ROLLED OVER THE TEXT; COLOR2 IS THE ROLLOVER COLOR<br />
<br />
tell me if you need help with the image rollovers<!--content-->thanx that help alot but me being a bit thick can you help with the image side of things:rolleyes:<!--content-->please can some help me with the image side of things i think its really basic but i dont know im a bit lost<!--content-->alrighty,<br />
<br />
This code is a little more simple than the other one provided, but you can't do as much stuff with it because it skips the functions all together. It works for rollovers though.<br />
<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"intro.html" onmouseover=intro.src="introductionover.jpg" onmouseout=intro.src="introduction.jpg"><IMG src="introduction.jpg" name="intro"></a><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"manual.html" onmouseover=manual.src="manualover.jpg" onmouseout=manual.src="manual.jpg"><IMG src="manual.jpg" name="manual"></a><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"stand.html" onmouseover=stand.src="standover.jpg" onmouseout=stand.src="stand.jpg"><IMG src="arch.jpg" name="stand"></a><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"arch.html" onmouseover=arch.src="archover.jpg" onmouseout=arch.src="arch.jpg"><IMG src="arch.jpg" name="arch"></a><br />
<br />
you're going to need eight pictures for this to work:<br />
<br />
introduction.jpg<br />
introductionover.jpg<br />
manual.jpg<br />
manualover.jpg<br />
stand.jpg<br />
standover.jpg<br />
arch.jpg<br />
archover.jpg<br />
<br />
you can just copy and paste the code into your page where you want the links.<br />
<br />
<br />
David<br />
<br />
P.S.<br />
<br />
what do you mean with the Image side of things?<!--content-->
 
Back
Top