[300 Cash reward] Navigation.

Midnight

Seasoned Veteran
Joined
Apr 14, 2009
Messages
3,184
Reaction score
0
FP$
6
Hi guys.

I have been away for some time and the reason for this is i am creating a new website. I am very new to html and need some help. On the navigation bar there is the button ''about''. I want to make that link to may second page ''Page2.html''.

Here is the bit that i am trying to edit:
Code:
<td> <a href="#" onmouseover="window.status='about'; changeImages('about', 'images/about-over.jpg'); return true;" onmouseout="window.status=''; changeImages('about', 'images/about.jpg'); return true;" onmousedown="changeImages('about', 'images/about-over.jpg'); return true;" onmouseup="changeImages('about', 'images/about-over.jpg'); return true;">
<img name="about" src="images/about.jpg" alt="about" border="0" height="33" width="69"></a></td>

I am trying to add the code:
Code:
<a href="url">Page2.html</a>

I dont know where to add the link to the code i have tried diffrent positions but nothing has worked. Please help. Thankyou.

http://dezine.comuv.com/
 
Re: Navigation

Try this.

<td> <a href="page2.html" onmouseover="window.status='about'; changeImages('about', 'images/about-over.jpg'); return true;" onmouseout="window.status=''; changeImages('about', 'images/about.jpg'); return true;" onmousedown="changeImages('about', 'images/about-over.jpg'); return true;" onmouseup="changeImages('about', 'images/about-over.jpg'); return true;">
<img name="about" src="images/about.jpg" alt="about" border="0" height="33" width="69"></a></td>

I recommend you use div's and css as tables are old now.
 
Thanks man, it now clickable. However when i click it, it goes to a 000webhost error page?

+ 2 Rep!
 
Re: Navigation

Create a page called page2.html then it will work. 😀

Thanks for the rep.
 
Its still not working its still going to an error page?

I created a page called page2.html but it still doesnt work?
 
Umm my index and page 2 are in the public_html. With all the other folders? is that right?
 
ok, thanks for trying to help =].

300 cash and 2 reps goes to the person who can fix the problem. thanks 🙂
 
Trying putting a / before page 2. /page2.html.

Can we have a link to the error page? Cheers.
 
If I could have the username and password (change it first) I could probably do it.
 
Hey, If you go on the site and in the navbar and click on ''about''. It should bring you to the error page.

And where do you put the /. Renaming the folder or in the html? thanks
 
No don't rename it.

<td> <a href="/page2.html" onmouseover="window.status='about'; changeImages('about', 'images/about-over.jpg'); return true;" onmouseout="window.status=''; changeImages('about', 'images/about.jpg'); return true;" onmousedown="changeImages('about', 'images/about-over.jpg'); return true;" onmouseup="changeImages('about', 'images/about-over.jpg'); return true;">
<img name="about" src="images/about.jpg" alt="about" border="0" height="33" width="69"></a></td>
 
I need the files, maybe you can change your password on there and pm the details so I can see the whole file and edit it as I go along.
 
Back
Top Bottom