|
Title: How do I post a photo? Post by: Chrissy on November 07, 2008, 02:28:18 PM I tried to post a photo from my flickr in the games section http://neil.creek.name/forum/index.php?topic=5.msg20#msg20 (http://neil.creek.name/forum/index.php?topic=5.msg20#msg20) and it didn't work.
I'm not too sure how to post a photo in a forum .... is it different from how we post in flickr? Any advice or suggestions from anyone would be great. Cheers Chrissy Title: Re: How do I post a photo? Post by: neilcreek on November 08, 2008, 10:02:16 PM Thanks for asking this question Chrissy, I knew it would come up sooner or later :)
For security reasons, the forum won't let you use anything but the simplest html. The links that Flickr provide have a whole bunch of useful extra information, like alt text and image dimensions, but the forum doesn't support those. So for the example you had in your post on the games thread: Code: <a href="http://www.flickr.com/photos/mystic-venus/2874071881/" title="Scenically Wired by Chrissy Downunder, on Flickr"><img src="http://farm4.static.flickr.com/3059/2874071881_5e05fbb707_m.jpg" width="240" height="136" alt="Scenically Wired" /></a> You need to strip out everything but the <a tag and the <img tag, so that they have no attributes. Like this: Code: <a href="http://www.flickr.com/photos/mystic-venus/2874071881/"><img src="http://farm4.static.flickr.com/3059/2874071881_5e05fbb707_m.jpg" /></a> So the "title" "width" "height" and "alt" attributes have all been stripped. Sorry I can't change this to make it simple to cut and paste, but that's the way the forum is designed. I might see if the forum can be hacked to allow those attributes, but it's a low priority right now. I've fixed your post to display your image correctly Chrissy :) |