~Dave 0 Report post Posted May 18, 2007 Okay i have links that work at my house but not at school where i am trying to edit the HTML, the site is http://forums.xisto.com/no_longer_exists/, the links arent set anywhere but it should still send me to a blank page if the link i sent it to does not exist. Could someone please check it out and see if its working on a different computer? because it works on mine at home heres the code... <html><head><title>Gaming Alliance | Next Generation Of Gamers Today</title><body bgcolor="#000000"><img src="http://forums.xisto.com/no_longer_exists/404.png <a href="index.html"><img src="images/button1over.png"></a><td <a href="games.html"><img src="images/button2over.png"></a><td <a href="http://forums.xisto.com/no_longer_exists/ gamingalliance src="images/button3over.png"></a><td <a href="linktous.html"><img src="images/button4over.png"></a></td></tr></table></body></html> Thanks. Share this post Link to post Share on other sites
slushpuppy 0 Report post Posted May 18, 2007 <html> <head> <title> Gaming Alliance | Next Generation Of Gamers Today </title> <body bgcolor="#000000"> <img src="http://forums.xisto.com/no_longer_exists/404.png; <table> <tr> <td <a href="index.html"><img src="images/button1over.png"></a> <td <a href="games.html"><img src="images/button2over.png"></a> <td <a href="http://http://forums.xisto.com/no_longer_exists/ gamingalliance src="images/button3over.png"></a> <td <a href="linktous.html"><img src="images/button4over.png"></a> </td> </tr> </table> </body> </html> I believe you have to use the http when defining links which isn't your base domain. Also are the files on your computer? because I got 404 errors. Share this post Link to post Share on other sites
pradhanashish 0 Report post Posted May 18, 2007 u r naot using correct folder of image plz use it correct image folder where images r exists................. Share this post Link to post Share on other sites
~Dave 0 Report post Posted May 18, 2007 the links arent set up yet but i cannot even click on them to get re-directed to a "Does not exist" at school, its like they are pictures that aren't even linked but at home they link Share this post Link to post Share on other sites
jlhaslip 4 Report post Posted May 19, 2007 Also, IE6 and earlier won't be liking the png file types... Share this post Link to post Share on other sites
slushpuppy 0 Report post Posted May 19, 2007 the links arent set up yet but i cannot even click on them to get re-directed to a "Does not exist" at school, its like they are pictures that aren't even linked but at home they linkI have reason to believe your other files are on your home computer and not on the web server. jlhaslip, what's with the issue with png and IE, i am interested Share this post Link to post Share on other sites
jlhaslip 4 Report post Posted May 19, 2007 IE6 and earlier don't like png format. Microsoft doesn't work with them properly until IE7, but there is a javascript solution you can find on the Web. (Google it)I think MS tried to force their users to use jpg and Gif formats, but the web simply refused to bow under, so the png format is becoming more popular. Share this post Link to post Share on other sites
~Dave 0 Report post Posted May 19, 2007 k thanks its fixed now u can see it, http://forums.xisto.com/no_longer_exists/ Share this post Link to post Share on other sites
rize619 0 Report post Posted June 23, 2007 hey now working ? unbeliveable ! <td <a href="index.html"><img src="images/button1over.png"></a><td <a href="games.html"><img src="images/button2over.png"></a><td <a href="phpbbplanet.com/gamingalliance/" src="images/button3over.png"></a><td <a href="linktous.html"><img src="images/button4over.png"></a></td>u are not ending <td> tag u are using <td only where is '> ' ? i cant understand Notice from BuffaloHELP: Always use proper bbcode, in this case Share this post Link to post Share on other sites
Azriel_Stormbringer 0 Report post Posted June 23, 2007 IE6 and earlier don't like png format. Microsoft doesn't work with them properly until IE7, but there is a javascript solution you can find on the Web. (Google it)I think MS tried to force their users to use jpg and Gif formats, but the web simply refused to bow under, so the png format is becoming more popular. Yeah, tis a Quicktime plug-in that you need. Back then i just used FireFox instead...oh...i do anyway lol!Love the site by the way, tis a very nice layout ya got there Keep up the good work Share this post Link to post Share on other sites
Graeme 0 Report post Posted June 29, 2007 From personal experience, I find that instead of taking shortcuts when you are writing html code, use the full link. It doesn't take that long to do, and you are then positive that the link will work.Use full links for links and images.do not use - <html><body><a href="/games.html"><img src="/games.jpg"></a></body></html> use - <html><body><a href="http://http://ww38.yoursite.com/games.html src="http://http://ww38.yoursite.com/games.jpg;</body></html> Hope this helps Notice from BuffaloHELP: Always use proper bbcode tags. In this case Share this post Link to post Share on other sites