I'm not clear on what you mean by 'disjointed'. But there is no reason why a rollover of an image cannot make text appear in another area. This could get a little involved if special effects are desired. And it seems to me that it could look odd (depending upon the design) having an area with no text, which I imagine would be required so that your text could then appear there.
Here is a very basic example:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table>
<tr>
<td><img src="http://home.comcast.net/~jscheuer1/side/point_1_o.jpg"
onmouseover="document.getElementById('ptext').style.visibility = 'visible';"
onmouseout="document.getElementById('ptext').style.visibility = 'hidden';"
alt=""><br>Caption</td><td><div id="ptext" style="visibility:hidden;">
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
Hi There, this is the text that will appear onmouseover of the image.
</div></td>
</tr>
</table>
</body>
</html>
It would be a good idea to have the text simply be visible to non-javascript enabled browsers. This could be done at least a couple of ways. But for now, I just want to see if this is what you are talking about.
Bookmarks