Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Pictures & Text mouseovers
Old 11-03-2005, 09:57 AM Pictures & Text mouseovers
Harvey's Avatar
Super Spam Talker

Posts: 901
Name: Harvey C
Location: Brighton, UK
Trades: 0
I've got a picture above some text, in a table:

HTML Code:
<table width="100%"  border="0" cellspacing="15" dwcopytype="CopyTableCell">
          <tr>
            <td><div align="center"><a href="http://www.1freehost.net/health" target="_blank"><img src="images/pt_health.gif" width="227" height="141" border="0" class="portfolio"></a></div></td>
          </tr>
          <tr>
            <td><div align="center"><a href="http://www.1freehost.net/health" target="_blank">Henfield-surgery.co.uk</a> (Inlcudes logo) </div></td>
          </tr>
        </table>
Does anybody know how I can have it so when somebody mouses over the picture, the text is changed to the text goes to a:hover?

Thanks
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Harvey is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-03-2005, 10:40 AM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
Like this? I didn't know what you wanted to do with the links:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

	<head>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
		<title>Untitled Page</title>
		<script type="text/javascript"><!--
oldText = "";
function swap(newText) {
	oldText = document.getElementById("theTxt").innerHTML;
	document.getElementById("theTxt").innerHTML = newText;
}
//-->
</script>
	</head>

	<body bgcolor="#ffffff">
		<table width="100%" border="0" cellspacing="15" dwcopytype="CopyTableCell" >
			<tr>
				<td>
					<div align="center">
						<a href="http://www.1freehost.net/health" target="_blank" onmouseover="swap('Your New Text');" onmouseout="swap(oldText);"><img class="portfolio" src="images/pt_health.gif" height="141" width="227" border="0"></a>
					</div>
				</td>
			</tr>
			<tr>
				<td>
					<div align="center">
						<a href="http://www.1freehost.net/health" target="_blank" id="theTxt">Henfield-surgery.co.uk (Inlcudes logo)</a>
					</div>
				</td>
			</tr>
		</table>
	</body>

</html>
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Old 11-03-2005, 02:59 PM
Harvey's Avatar
Super Spam Talker

Posts: 901
Name: Harvey C
Location: Brighton, UK
Trades: 0
Almost, but instead of changing text, it needs to just change the text's style to a:hover.

Thanks
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Harvey is offline
Reply With Quote
View Public Profile
 
Old 11-03-2005, 11:15 PM
funkdaddu's Avatar
Web Design Snob

Posts: 635
Trades: 0
You mean like it's being hovered over? Why not combine the image and text into 1 href?
Code:
<a href="http://www.1freehost.net/health" target="_blank"><img class="portfolio" src="images/pt_health.gif" height="141" width="227" border="0"><br>Henfield-surgery.co.uk (Inlcudes logo)</a>
funkdaddu is offline
Reply With Quote
View Public Profile Visit funkdaddu's homepage!
 
Reply     « Reply to Pictures & Text mouseovers
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.49583 seconds with 12 queries