AshleyQuick
02-25-2005, 06:49 PM
You have to mouseover the actual link in order for the link color to change to white. Is there a way to modify this so that you can mouseover any part of the table cell to turn the link color to white?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style>
a {
color: #758EA4;
}
a.nav {
color: #758EA4;
text-decoration: none;
}
a.nav:visited {
color: #758EA4;
text-decoration: none;
}
a.nav:hover {
color: #FFF;
text-decoration: none;
}
a.nav:active {
color: #FFF;
text-decoration: none;
}
body,html {
background-color: #FFFFFF;
color: #333333;
}
td {
background-color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
margin: 0px;
padding: 0px;
}
td.nav_cell {
padding: 4px;
text-align: right;
width: 100%;
}
</style>
</head>
<body>
<table style="width: 203px">
<tr>
<td class="nav_cell" onmouseover="style.backgroundColor='#768EA5'; this.style.color='#FFF'; this.style.cursor='pointer'; window.status = 'Corporate Information Vehicles'; return true;" onmouseout="style.backgroundColor='#FFF'; window.status = ''; return true;" onClick="window.location.href='/'"><a class="nav" href="/">Corporate Information <img align="absmiddle" src="gfx/nav_marker_out.gif" alt="" width="2" height="16" border="0"><img align="absmiddle" src="gfx/nav_marker_over.gif" alt="" width="2" height="16" border="0"></a></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style>
a {
color: #758EA4;
}
a.nav {
color: #758EA4;
text-decoration: none;
}
a.nav:visited {
color: #758EA4;
text-decoration: none;
}
a.nav:hover {
color: #FFF;
text-decoration: none;
}
a.nav:active {
color: #FFF;
text-decoration: none;
}
body,html {
background-color: #FFFFFF;
color: #333333;
}
td {
background-color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
margin: 0px;
padding: 0px;
}
td.nav_cell {
padding: 4px;
text-align: right;
width: 100%;
}
</style>
</head>
<body>
<table style="width: 203px">
<tr>
<td class="nav_cell" onmouseover="style.backgroundColor='#768EA5'; this.style.color='#FFF'; this.style.cursor='pointer'; window.status = 'Corporate Information Vehicles'; return true;" onmouseout="style.backgroundColor='#FFF'; window.status = ''; return true;" onClick="window.location.href='/'"><a class="nav" href="/">Corporate Information <img align="absmiddle" src="gfx/nav_marker_out.gif" alt="" width="2" height="16" border="0"><img align="absmiddle" src="gfx/nav_marker_over.gif" alt="" width="2" height="16" border="0"></a></td>
</tr>
</table>
</body>
</html>