PDA

View Full Version : help with links




mactib
Aug 10, 2006, 09:06 PM
I am helping this professor on updating somethings on his website and I am having trouble with links. Everytime I connect the links and upload the files on the server. The links are not updated or something.

this is the code

<tr>
<td height="27" align="left" valign="bottom" background="../rationale.htm" class="nav" id="rationale">
<a accesskey="A" href="file:///Untitled/Users/tnorbu/Desktop/untitled%20folder/pages/rationale.htm" onMouseOver="navRollOver('rationale', 'on')" onMouseOut="navRollOver('rationale', 'off')"><span class="style8">
Rationale</span></a> </td>
</tr>

What should i do? Urgent help



reh
Aug 10, 2006, 09:33 PM
<tr>
<td height="27" align="left" valign="bottom" background="../rationale.htm" class="nav" id="rationale">
<a accesskey="A" href="file:///Untitled/Users/tnorbu/Desktop/untitled%20folder/pages/rationale.htm" onMouseOver="navRollOver('rationale', 'on')" onMouseOut="navRollOver('rationale', 'off')"><span class="style8">
Rationale</span></a> </td>
</tr>

What should i do? Urgent help
Your problem is in bold there. It's pointing to a local file.

reh
Aug 10, 2006, 09:42 PM
I'll give a shot at fixing it, but it's simply a guess based on other links in the code you posted.
<tr>
<td height="27" align="left" valign="bottom" background="../rationale.htm" class="nav" id="rationale">
<a accesskey="A" href="../rationale.htm" onMouseOver="navRollOver('rationale', 'on')" onMouseOut="navRollOver('rationale', 'off')"><span class="style8">
Rationale</span></a> </td>
</tr>

mactib
Aug 10, 2006, 09:46 PM
I'll give a shot at fixing it, but it's simply a guess based on other links in the code you posted.
<tr>
<td height="27" align="left" valign="bottom" background="../rationale.htm" class="nav" id="rationale">
<a accesskey="A" href="../rationale.htm" onMouseOver="navRollOver('rationale', 'on')" onMouseOut="navRollOver('rationale', 'off')"><span class="style8">
Rationale</span></a> </td>
</tr>

so... having a href="../rationale.htm changes the whole thing
great!!