|
How To Post Multiple Pictures in a Single Post in the N-Tractor Club's
Forums The following is a tutorial on how to post multiple pictures in a single post in the N-Tractor Club's forums. You will use a little HTML programming to accomplish this. We will explain below how you do this. You may want to use the Windows copy and paste functions to capture this information to your post, or to your own tutorial to be saved on your personal computer. Instead of using the Optional Image URL: box (located below the box where you enter your comments), you type the following code directly into the "Comments:" box along with your message: <center><img src=""></center> You need to type it exactly like above, and add the URL (web address) of your picture (from photobucket or wherever you chose to store it on the Internet) between the double quotes after img src. A completed command would look something like this: <center><img src="http://img.photobucket.com/my picture #1"></center> For example, let's say you wanted to display 3 different pictures that you have stored on Photobucket, and add some text before, between and after. It would look like this: Comments:__________________________________________________________ Yada yada yada................text goes here <center><img src="http://img.photobucket.com/my picture #1"></center> yada yada yada.......more text about the next picture <center><img src="http://img.photobucket.com/my picture #2"></center> yada yada yada.......more text about the next picture <center><img src="http://img.photobucket.com/my picture #2"></center> yada yada yada...........closing text, signature, etc. Each command begins with a less than sign and terminates with a greater than sign: <center> <img src=""> </center> The <center> and </center> are not required. You could get by with just the <img src=""> command and your image would be left justified. The "center" HTML command is optional to format the picture that you display. The img src="" HTML command has some optional, but useful parameters like width="300" and height="300" (NOTE: the 300 value is arbitrary, and you can set it to what you want). This sets the size of your picture to avoid having the viewer scroll to see it all and also makes it load faster for those with dial-up connections). These parameters would be inserted after the img src="". An example would look like this: <center><img src="http://img.photobucket.com/my picture #3" width="300" height="300"></center> Hope this helps. If you need further clarification, please feel free to ask. Regards...................Ed Gooding |