S spida New Member ★ 20 ★ Impact 0 Mar 29, 2005 665 views 4 replies #1 is there a way to position an image in the bottom right hand corner, without using tables in HTML?
vip-ip Account Closed Impact 24 Mar 29, 2005 #2 No Code: <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="right"> <tr> <td width="100%" valign="bottom"> <p align="right"> <img src="xxxxxxxx" border="0"> </td> </tr> </table> Easiest way.
No Code: <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="right"> <tr> <td width="100%" valign="bottom"> <p align="right"> <img src="xxxxxxxx" border="0"> </td> </tr> </table> Easiest way.
S squeaky14 New Member ★ 20 ★ Impact 1 Mar 30, 2005 #3 maybe I'm sure you can do it with javascript!! But I dont know javascript so I can't help you
A adam_uk Established Member ★ 20 ★ Impact 20 Mar 30, 2005 #4 vip-ip said: No Code: <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="right"> <tr> <td width="100%" valign="bottom"> <p align="right"> <img src="xxxxxxxx" border="0"> </td> </tr> </table> Easiest way. Click to expand... actually you can do it without tables I'm sure you can do it with javascript!! But I dont know javascript so I can't help you Click to expand... or even javascript this will place the image 10 pixels from the bottom and the right side of the browser and will be 30 pixels wide and high. set the width and height of the div to the same dimensions of your image (in pixels) Code: <div style="position:absolute;bottom:10px;right:10px;background-color:blue;width:30px;height:30px;">dasd</div> demo: http://www.adamcroot.co.uk/scripts/div.html
vip-ip said: No Code: <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="right"> <tr> <td width="100%" valign="bottom"> <p align="right"> <img src="xxxxxxxx" border="0"> </td> </tr> </table> Easiest way. Click to expand... actually you can do it without tables I'm sure you can do it with javascript!! But I dont know javascript so I can't help you Click to expand... or even javascript this will place the image 10 pixels from the bottom and the right side of the browser and will be 30 pixels wide and high. set the width and height of the div to the same dimensions of your image (in pixels) Code: <div style="position:absolute;bottom:10px;right:10px;background-color:blue;width:30px;height:30px;">dasd</div> demo: http://www.adamcroot.co.uk/scripts/div.html
G genious Account Closed Impact 0 Apr 27, 2005 #5 you could use this simple but effective it's dyname meaning if the window size changes it's place won't change. <div style="position:absolute;bottom:0;right:0;"> <img src="name.jpg"> </div>
you could use this simple but effective it's dyname meaning if the window size changes it's place won't change. <div style="position:absolute;bottom:0;right:0;"> <img src="name.jpg"> </div>