PDA

View Full Version : [help] Image link troubles


DukeofNukes
03-20-2002, 05:20 PM
AUAUAUGGGGHHH! As I said in another thread on this topic, I'm teaching myself HTML, and I'm having difficulty troubleshooting some image links. Code that works right and code that just doesn't appears identical to me.



<a href= "http://www.penny-arcade.com/"><img src=
"images/button_pa.gif" alt= "Penny Arcade!" border= "1"/></a>



That works. Twenty lines later,



<img src= "images/cflinkto.gif" border="1" alt="CoderForums"/> (http://www.coderforums.net/)



doesn't. I checked path- and filenames, all good to go. What the Hell am I doing wrong? The code in question is found on www4.ncsu.edu/~jralford/links.html

Thanks for the help.

imported_Phil
03-20-2002, 05:55 PM
When I go to your image url, it is telling me that is is not found on the server. So you either uploaded your image to the wrong directory or you aren't specifing the image path correctly.

Nafae
03-20-2002, 06:39 PM
the best way to format #2 is:

<img src= "./images/cflinkto.gif" border="1" alt="CoderForums"> (http://www.coderforums.net)


let me know fi that works :)

DukeofNukes
03-20-2002, 07:47 PM
::smacks self:: I hate being a dumbass. Underscores. Both links had underscores, and I friggin' misformatted 'em, and didn't notice it. Thanks, guys.

kryptech.net
10-05-2003, 10:51 PM
try no spaces sometimes img= "kjgkjgf.jpg" dosent work use img="jjgjgjg.jpg" also dont use the '/' thing at the end of the tag (where does that come from)