Page 1 of 1

Locks T6

Posted: Sun May 13, 2007 1:52 pm
by sindogg

Posted: Sun May 13, 2007 1:54 pm
by Aiedail
I don't see anything = /

Posted: Sun May 13, 2007 1:59 pm
by sindogg
now you can

Posted: Sun May 13, 2007 3:28 pm
by Phorenn
sindogg, notice the difference between these two:

http://www.fusionraid.com/album_picm.php?pic_id=25
http://www.fusionraid.com/album_pic.php?pic_id=25

The first one is the medium sized version generated by the forums. The second one is the actual image. Since the medium size image doesn't actually exist, but rather is generated when the image is called, you cannot simply make it a link like this:

http://www.fusionraid.com/album_picm.php?pic_id=25

That will usually just put a bunch of garbage on the screen when you click it. However, you can display it in your post using the html img tag like this:

Code: Select all

<img src="http://www.fusionraid.com/album_picm.php?pic_id=25">
(You have to use the html img tag for this, not the bbcode img tag)

You can then make it a link to the full size version by wrapping the normal bbcode link tag around it:

Code: Select all

[url=http://www.fusionraid.com/album_pic.php?pic_id=25]<img src="http://www.fusionraid.com/album_picm.php?pic_id=25">[/url]
I've done this to your post. Edit your post to see the code being used.