PDA

View Full Version : Image Placement


squirellplaying
02-07-2006, 01:49 AM
I'm designing a website and we have an ackwardly placed image, or so I feel. To mean it seems very out of place and doesn't go with the flow of the page.
http://andrewquinnmovie.com/cast.php
The image I'm refering to is the picture on the right. Any ideas on possible placements/effects to help with the image or do you think it looks ok?

_Aerospace_Eng_
02-07-2006, 02:49 AM
Center it in the blank space at lease horizontally, though both horizontal and vertical centering of the image would look good.

Archangel
02-07-2006, 01:08 PM
Even a straight right align would work better and then throw some padding around your text and you're good to go.

ramakrishna p
02-08-2006, 08:44 AM
I'm designing a website and we have an ackwardly placed image, or so I feel. To mean it seems very out of place and doesn't go with the flow of the page.
http://andrewquinnmovie.com/cast.php
The image I'm refering to is the picture on the right. Any ideas on possible placements/effects to help with the image or do you think it looks ok?

Another way of doing it is to insert a <table> in the <td> and making the table align center, right or left as you wish. I center aligned the table. Just try this. This is applicable for table based designs

<td>
<table width="435" height="250" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="images/full.png" width="435" height="250"></td>
</tr>
</table></td>

Replace "images/full.png" with your own url.