You have two options when wanting to get photos onto this site.
Option 1 (preferred):
Click reply when responding to a post or thread, to use the larger WYSIWYG entry text box.
Either click the upload a file link in the bottom left of the text entry box and that will give you a popup window to allow you to upload files.
Then either upload the pictures directly from your computer, or from a mobile phone.
Option 2:
Click the image button above the text entry box.
Enter the URL of a remotely hosted image. Note that this image must already be on the internet somewhere (not your computer) and that the URL must be to the image itself... it should end in .jpg, .png, .gif or .svg
That's it.
Why is option 1 preferred?
The image will be permanently available even though the remote website may be down.
The site remains fast even when a remote website may be slow.
How to enter the syntax?
You have a few options, if you're good with HTML, then use an <img> tag, it will work.
Or use Markdown:
Here's how to add links and images using Markdown, and how to combine the two.
Images are still links and go in () and you may still have some text for the image tag which can go in [], and to say it should be an image start with a !
You have two options when wanting to get photos onto this site.
Option 1 (preferred):
Option 2:
That's it.
Why is option 1 preferred?
How to enter the syntax?
You have a few options, if you're good with HTML, then use an
<img>
tag, it will work.Or use Markdown:
Here's how to add links and images using Markdown, and how to combine the two.
https://daringfireball.net/projects/markdown/syntax#link
Hyperlinks go in (), and to indicate where the text to be hyperlinked starts and ends [] is used.
Hence a link is:
[the text to link](https://example.org/)
https://daringfireball.net/projects/markdown/syntax#img
Images are still links and go in () and you may still have some text for the image tag which can go in [], and to say it should be an image start with a !
![colnago](http://www.pedalroom.com/p/el-reys-colnago-tecnos2000-7204_13.jpg)
Then if you want it without the hover text:
![](http://www.pedalroom.com/p/el-reys-colnago-tecnos2000-7204_13.jpg)
And finally combining the two.
A link
[](http://destination)
and an image![](http://image)
would be[![](http://image)](http://destination)
because the link wraps the image.[![](http://www.pedalroom.com/p/el-reys-colnago-tecnos2000-7204_13.jpg)](http://www.pedalroom.com/bike/el-reys-colnago-tecnos2000-7204)
Finally, if you're crazy or something... you can still use BBCode and
[img]
tags... though I won't guarantee that will always work.