Log in

View Full Version : Need Help with making text always stay on the right of the image



seattle-west
10-28-2007, 07:52 PM
Website: http://www.dealsneaker.com/projectx/projectx.html

Can anyone help?

I'm having trouble with trying to figure out how to keep text on the right of the image and never go under the image,

thanks in advance.

http://i171.photobucket.com/albums/u290/seattlewest/help.jpg

jscheuer1
10-28-2007, 08:24 PM
Since you are already using a table, the easiest method would be to, instead of (an oversimplification of what you have):


<tr><td><img>everything else in the cell</td></tr>

do:


<tr><td><img></td><td>everything else that was in the one cell</td></tr>

You would likely need to set the width of at least the first cell, perhaps both of them.