• 0

Some help with my menu


Question

OK ive posted my.. Source code.. that im using... now then my question is.. "is there a way to make the menus cells be links" like say i clicked on objective statement

the name or the.. cell i would like it to take me to.. abc.html

is there a way to do this... in a cell? thanks Need this asap!

i would also not want to change the mouse over text color changes

<html>

<head>

<title>Untitled</title>

& lt; ;style>

.initial

{

background-color: #C0C0C0;

color: white;

font-family: Verdana, Helvetica, sans-serif;

font-size: 10px;

font-weight: normal;

}

.mouseOver

{

background-color: white;

color: #C0C0C0;

font-family: Verdana, Helvetica, sans-serif;

font-size: 10px;

font-weight: normal;

}

.mouseOut

{

background-color: #C0C0C0;

color: white;

font-family: Verdana, Helvetica, sans-serif;

font-size: 10px;

font-weight: normal;

}

</style>

</head>

<body>

<table width="172" border="0" cellspacing="0" cellpadding="0" height="33" align="left" style="border-collapse: collapse" bordercolor="#C0C0C0">

<tr>

<td align="left" bgcolor="#808080" bordercolor="#000000" width="172" height="16">

<a href="http://www.draac.com/" style="text-decoration: none"><b>

<font face="Verdana" color="#FFFFFF" style="font-size: 8.5pt">Our Organization</font></b></a></td>

</tr>

<tr>

<TD bgColor=#c0c0c0 height="10" bordercolor="#C0C0C0">

<font face="Verdana" size="1">

<IMG height=1 alt=""

src="spacer.gif"

width=164 border=0></font></TD>

</tr>

<tr>

<td class="initial" onMouseOver="this.className='mouseOver'" onMouseOut="this.className='mouseOut'" width="172">

<b>

<font size="1" face="Verdana" color="#FFFFFF">

<img alt hspace="5" src="arrow_right.gif" vspace="3" border="0" width="4" height="8"></font><font face="Verdana">Objective

Statement</font></b></td>

</tr>

<tr>

<td class="initial" onMouseOver="this.className='mouseOver'" onMouseOut="this.className='mouseOut'" width="172">

<b>

<font size="1" face="Verdana" color="#FFFFFF">

<img alt hspace="5" src="arrow_right.gif" vspace="3" border="0" width="4" height="8"></font><font face="Verdana">Staff</font></b></td>

</tr>

<tr>

<td class="initial" onMouseOver="this.className='mouseOver'" onMouseOut="this.className='mouseOut'" width="172">

<b>

<font size="1" face="Verdana" color="#FFFFFF">

<img alt hspace="5" src="arrow_right.gif" vspace="3" border="0" width="4" height="8"></font><font face="Verdana">Profiles</font></b></td>

</tr>

<tr>

<TD bgColor=#c0c0c0 height="10" bordercolor="#C0C0C0">

<font face="Verdana" size="1">

<IMG height=1 alt=""

src="spacer.gif"

width=164 border=0></font></TD>

</tr>

<tr>

<td align="left" bgcolor="#808080" bordercolor="#000000" width="172" height="16">

<a href="http://www.draac.com/" style="text-decoration: none"><b>

<font face="Verdana" color="#FFFFFF" style="font-size: 8.5pt">Goals</font></b></a></td>

</tr>

</table>

</body>

</html>

Edited by generalnewbie
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

in the <td> tag

add:

onClick="location.href='abc.html'"

oh.. and if you want the hand cursor when you hover over the cell....

add this to your css

for .mouseOver

cursor: hand;

Edited by m0fo
Link to comment
Share on other sites

  • 0

hey moFO YOU A MOFO GOD!! thanks MAN

thats exactly WHAT I NEEDED BRO!!! THANKS SO MUCH!!! so simple yet!

i didnt think of it!

thanks again man

and everyone else thanks for helping me too

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.