But i don't know how to do this, I herd people say that all I need to do is insert the hyperlink into the header of out site. (which I have no idea how to do)
I have tried looking for the header but I can not find it.
Thanks!
Amro wrote:Ok so to make sure I understand what you need:
You have an existing website (presumably www.mysuperpc.com) and would like to add a link from the main page to your forums, correct?
If you're new to web development, it might be easier to use some sort of tool to do this (something like http://www.snapfiles.com/get/namu6.html). If so, find the file for the main page of your site (probably index.html or index.htm) and open it up in your HTML editor and add the link (how you do it will vary - if you want to add the link manually, into the HTML code itself, just open said file in notepad or wordpad and add this line to the location you want it to show up at:
<a href="http://forums.mysuperpc.com/">Forums</a>
save and exit, then replace the exiting file with the new one. Make sure not to delete anything. Make sure to place the above line within the <body> and </body> tags.
Code: Select all
<div id="navigation">
<img src="images/navigation.gif" alt="" /><a href="index.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/home.gif" alt="" /></a><a href="roster.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/roster.gif" alt="" /></a><a href="forums.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/forums.gif" alt="" /></a><a href="downloads.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/downloads.gif" alt="" /></a><a href="links.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/links.gif" alt="" /></a><a href="matches.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/matches.gif" alt="" /></a><a href="register.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/join.gif" alt="" /></a><img src="images/right-nav.gif" alt="" /> <a href="http://riddlesoflife.informe.com/index.php" target="_new" title="Forums">Forums</a>
</div>TonyT wrote:use the below to replace the section of source code in your site pagesCode: Select all
<div id="navigation"> <img src="images/navigation.gif" alt="" /><a href="index.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/home.gif" alt="" /></a><a href="roster.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/roster.gif" alt="" /></a><a href="forums.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/forums.gif" alt="" /></a><a href="downloads.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/downloads.gif" alt="" /></a><a href="links.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/links.gif" alt="" /></a><a href="matches.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/matches.gif" alt="" /></a><a href="register.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/join.gif" alt="" /></a><img src="images/right-nav.gif" alt="" /> <a href="http://riddlesoflife.informe.com/index.php" target="_new" title="Forums">Forums</a> </div>
morbidpete wrote:index.php
morbidpete wrote:you could always just change the url for the forums button. i did it on this one for ya
http://www.morbidpete.com/Personal/index[1]forums lik changed .php
Code: Select all
<div id="navigation">
<img src="images/navigation.gif" alt="" /><a href="index.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/home.gif" alt="" /></a><a href="roster.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/roster.gif" alt="" /></a><a href="forums.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/forums.gif" alt="" /></a><a href="downloads.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/downloads.gif" alt="" /></a><a href="links.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/links.gif" alt="" /></a><a href="matches.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/matches.gif" alt="" /></a><a href="register.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/join.gif" alt="" /></a><img src="images/right-nav.gif" alt="" />
</div>Code: Select all
<div id="navigation">
<img src="images/navigation.gif" alt="" /><a href="index.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/home.gif" alt="" /></a><a href="roster.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/roster.gif" alt="" /></a><a href="forums.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/forums.gif" alt="" /></a><a href="downloads.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/downloads.gif" alt="" /></a><a href="links.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/links.gif" alt="" /></a><a href="matches.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/matches.gif" alt="" /></a><a href="register.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/join.gif" alt="" /></a><img src="images/right-nav.gif" alt="" /> <a href="http://riddlesoflife.informe.com/index.php" target="_new" title="Forums">Forums</a>
</div>Code: Select all
<div id="navigation">
<img src="images/navigation.gif" alt="" /><a href="index.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/home.gif" alt="" /></a><a href="roster.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/roster.gif" alt="" /></a><a href="http://riddlesoflife.informe.com/index.php"><img src="images/forums.gif" alt="Forums" /></a><a href="downloads.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/downloads.gif" alt="" /></a><a href="links.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/links.gif" alt="" /></a><a href="matches.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/matches.gif" alt="" /></a><a href="register.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/join.gif" alt="" /></a><img src="images/right-nav.gif" alt="" />
</div>TonyT wrote:what program are you using for ftp?
you should really be using a standalone ftp client.
download and install this:
www.ftpx.com
note: if use a software firewall then you will have to allow the ftp client to connect when the firewall blocks it.
use this is modified code, not the code above:Code: Select all
<div id="navigation"> <img src="images/navigation.gif" alt="" /><a href="index.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/home.gif" alt="" /></a><a href="roster.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/roster.gif" alt="" /></a><a href="http://riddlesoflife.informe.com/index.php"><img src="images/forums.gif" alt="Forums" /></a><a href="downloads.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/downloads.gif" alt="" /></a><a href="links.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/links.gif" alt="" /></a><a href="matches.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/matches.gif" alt="" /></a><a href="register.php" onclick="doAjax('news', this.href, 0); return false;"><img src="images/join.gif" alt="" /></a><img src="images/right-nav.gif" alt="" /> </div>
ThanksTonyT wrote:http://www.w3schools.com/