travelkind Posted June 14, 2010 Share Posted June 14, 2010 Ok guys I hope this doesn't seem like to simple of a question but I need some help getting my footer to left justify. The main page (html below) has a reference to require("footer.php"); which I need to have left justified and not in the middle of my page. What html do I need to put in to make it justify to the left? Thanks for your help! <? session_start(); require("header.php"); ?> <table width="300" border="0" align="left" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC"> <tr> <form name="form1" method="post" action="checklogin.php"> <td> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF"> <tr> <td colspan="3"><strong>Member Login </strong></td> </tr> <tr> <td width="78">Username</td> <td width="6">:</td> <td width="294"><input name="myusername" type="text" id="myusername"></td> </tr> <tr> <td>Password</td> <td>:</td> <td><input name="mypassword" type="text" id="mypassword"></td> </tr> <tr> <td> </td> <td> </td> <td><input type="submit" name="Submit" value="Login"></td> </tr> </table> </td> </form> </tr> </table> <?php session_destroy(); require("footer.php"); ?> Quote Link to comment Share on other sites More sharing options...
haku Posted June 15, 2010 Share Posted June 15, 2010 You didn't show us your footer code. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.