PDA

View Full Version : Wanted: HTML Experts



Precious Garnet
06-29-2004, 09:57 PM
How do I align a text box or frame on the right of the picture below?

http://www.geocities.com/sorceress_wings/whole.jpg

I'm making a layout and I tried cutting the picture into sections and make frames to put it together but it didn't work very well. I was really confused and frustrated with the html code.

Shoeberto
06-29-2004, 11:16 PM
I'm not entirely sure of what you want, but I'm assuming for this that you'd want to use tables, not frames.

< table >
< tr >
< td > (image would go here) < /td > < td > (text would go here) < /td >
< /tr >
< /table >

Of course, the tags would have to be touched up a bit for looks and to make it fit your page, but those modifiers could easily be found on a Google search.

o_O
06-30-2004, 10:32 AM
Alternatively, you could use CSS to position it:

&lt;img src="bla.jpg" height="100" width="100" style=":bou::bou::bou::bou::bou::bou::bou::bou::bou::bou: absolute; left: 100; top: 100;"&gt;&lt;img src="bla2.jpg" height="100" width="100" style=":bou::bou::bou::bou::bou::bou::bou::bou::bou::bou: absolute; left: 200; top: 100;"&gt;

That will align one picture 100px from the left hand edge of the frame, and a second one 200px form the left, which incidentally, would line up perfectly with the first one, so it looks like one rectangular picture.

The picture you posted isn't showing up for me.