06-14-2003, 07:45 PM | #1 (permalink) |
Fear the bunny
Location: Hanging off the tip of the Right Wing
|
Need help aligning pictures on webpage
I can't figure this crap out! I have all my text on the left, and now I want to insert a picture on the right of the page, even with the text, but I can't figure out how to do it. So far I can't find any tips on HTML help sites. Does anyone know how to do this?
__________________
Activism is a way for useless people to feel important. |
06-15-2003, 08:02 AM | #3 (permalink) |
Psycho
Location: ask your mom
|
go here.... you can even try an mess around with the example.
http://www.w3schools.com/html/tryit....ml_image_float
__________________
aaarrrrrgggghhhh!!!! |
06-15-2003, 12:58 PM | #7 (permalink) |
Crazy
Location: Pittsburgh
|
Be careful with the align settings. If you would like to have your images in a predictable location you should use a table to control your screen location.
This is easily accomplished with something like this. < table width = 50% align = center > <tr> <td> stuff & what not....<img src=something.jpg align=right> ...more stuff & what not </td> </tr> </table> The reason for this is that if you change resolutions, align = right will put it at the right border of your window. If you control the width of your text then you will end up with reliable locations with minor variations among resolution changes. Containers like table and div are great for controlling your website's display methodology. Good luck I hope that this helps. Last edited by gigawatz; 06-15-2003 at 01:00 PM.. |
Tags |
aligning, pictures, webpage |
|
|