html help - putting images on the same line
I am trying to get 2 pictures on the same line, but I want 1 on the right and 1 on the left. I need to know what to do. If I need to put them in a table to accomplish this how is that done.
I am trying to get 2 pictures on the same line, but I want 1 on the right and 1 on the left. I need to know what to do. If I need to put them in a table to accomplish this how is that done.
Jim Shilt posted this at 23:19 — 11th October 1999.
They have: 268 posts
Joined: May 1999
<IMG SRC="file.gif" ALIGN=LEFT>
<IMG SRC="otherfile.gif" ALIGN=RIGHT>
In a nutshell this should work. They may need to be put inside a table to keep them on the same line. (I usually put stuff in tables and haven't tried them outside)
Hope this works for you
----------
My goal in life is found in Phillipians 4:8-9
My goal in life is found in Phillipians 4:8-9
shoutingrock.org/troop214
lasuz2 posted this at 19:57 — 12th October 1999.
They have: 10 posts
Joined: Sep 1999
Thanks again JP I am getting closer there is one more thing if you could got ot the site and scroll down to the two pics of the cats side by side you can see what I am trying to do the site is:
http://geocities.com/Heartland/Cottage/3022/catspage.html.Thanks again for all your help as I am very new at this and still trying very hard to learn.
lasuz2 posted this at 23:33 — 12th October 1999.
They have: 10 posts
Joined: Sep 1999
Thanks for the help Jim I think I was going about it all wrong but your advice worked. I have one more question how do I get my text to appear under the pictures instead of beside it.
JP Stones posted this at 23:53 — 12th October 1999.
They have: 2,390 posts
Joined: Nov 1998
...again use a table, this time a 2 row/2 col table.
So effectively add a row to the current table you should be using.
<table>
<tr>
<td>img1</td>
<td>img2</td>
</tr>
<tr>
<td>text for img1</td>
<td>text for img2</td>
</tr>
</table>
Good luck,
JP
----------
[red]The Next Step in Website Development [/red] - http://www.what-next.com
The Webmaster Promotion and Resource Center
lasuz2 posted this at 01:10 — 13th October 1999.
They have: 10 posts
Joined: Sep 1999
Thanks JP here is what I did does this look right? I still can't get one line of the text to go to the right.
<tr>
<td><i><b><font size=+2 color=brown>Hi, I'm Buddy...<align="left"></B></I>
</td>
<td><I><B><font size=+2 color=brown>... and I'm BooBoo <align="right"></B></I>
</td>
</tr
</table>
Should I change the align command and put it in a different place?
Jim Shilt posted this at 02:29 — 13th October 1999.
They have: 268 posts
Joined: May 1999
<TABLE border=0 width="90%">
<tr>
<td><img src="Buddya1.JPG" align="left"></td>
<td><img src="a_tails.gif"></td>
<td><img src="BooBoo5.JPG" align="right"></td>
</tr>
<tr>
<td><p align="left"><i><b><font size=+2 color=brown>Hi, I'm Buddy...</b></I></p></td>
<td>@nbsp;</td>
<td><p align="right"><I><B><font size=+2 color=brown>... and I'm BooBoo</b></i></p></td>
</tr>
</table>
Try inserting the above code where you want the table.
You might also want to go to this site to download my favorite tutorials.
http://junior.apk.net/~jbarta/index.html
Hope this helps
----------
My goal in life is found in Phillipians 4:8-9
My goal in life is found in Phillipians 4:8-9
shoutingrock.org/troop214
JP Stones posted this at 02:44 — 13th October 1999.
They have: 2,390 posts
Joined: Nov 1998
...
<tr>
<td>[red]<p align="left">[/red]<i><b><font size=+2 color=brown>Hi, I'm Buddy...</b></I>[red]</p>[/red]
</td>
<td>[red]<p align="right">[/red]<I><B><font size=+2 color=brown>... and I'm BooBoo</b></i>[red]</p>[/red]
</td>
</tr[red]>[/red]
JP
</table> man!
----------
[red]The Next Step in Website Development [/red] - http://www.what-next.com
The Webmaster Promotion and Resource Center
lasuz2 posted this at 23:15 — 13th October 1999.
They have: 10 posts
Joined: Sep 1999
Thank you guy's for all your help i think it will help me accomplish what I was out to do . Thanks again.
JP Stones posted this at 03:04 — 14th October 1999.
They have: 2,390 posts
Joined: Nov 1998
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.