Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mactib

macrumors member
Original poster
Jul 21, 2006
56
0
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
 
mactib said:
<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.
 
I'll give a shot at fixing it, but it's simply a guess based on other links in the code you posted.
Code:
<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>
 
reh said:
I'll give a shot at fixing it, but it's simply a guess based on other links in the code you posted.
Code:
<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!!
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.