HTML hard justified to margin

liunx

Guest
Hi There,<br />
I'm trying to do an HTML page with an image (jpeg photo) in the bottom right hand corner, and I want the image to go hard to the bottom of the page, and also to the right hand side of the page so that there is no margin on these two sides. However I can't seem to be able to this. I'm using a table to set out the page. Can anyone point me in the right direction of an obvious error I'm making or a programming bit of wizardry. In the table I have the following programming: <TABLE width="100%" height="100%" border="1" FRAMEBORDER="0" FRAMESPACING="0" cellspacing="0" cellpadding="0">, and in the TD relevant to the image I have <TD align="right" valign="bottom"><img src=http://www.webdeveloper.com/forum/archive/index.php/"image1.jpg" width="405" height="436" alt="" border="0" ><br />
How do I remove the border that I appear to have that goes around the outside of the table?<br />
I'm not an HTML genius (as you may have guessed!) so please keep it as simple as you can for me!<br />
Thanks<br />
Pete<!--content-->Hi Pete,<br />
Welcome to the forums. I'll go ahead and point out the obvious: you've given the table a border in right up front: <TABLE width="100%" height="100%" border="1" FRAMEBORDER="0" FRAMESPACING="0" cellspacing="0" cellpadding="0"><br />
Change to border="0"<br />
<br />
I'm not sure you can pin that image to the bottom right of the page the way you want to with tables. You may have to use CSS to do it.<!--content-->Yes - sorry, i had put that border = 1 so I could see what was going on, but normally set to 0, but failed to get desired effect.<br />
I shall do a search on CSS to see what that entails. Thanks for getting back so quickly!<br />
Pete<!--content-->
 
Back
Top