this code all works except for the width values which are seemingly not recognized:
Code:
<head> <style type="text/css"> table, td, table { width:800;height:25; } table { position: absolute; right: 100px; top: 80px; } table { border-collapse:collapse; } td { border-spacing:0px; } td { border-collapse:collapse; } td { border-bottom-style:solid; border-bottom-width:1px; border-color:black; } td { background-color:grey; color:red; } td { text-align:center; } </style> </head> <body> <table> <tr> <td width='20'></td> <td width='400'>First Name:</td> <td width='340'>{$info['firstname']}</td> <td width='40'><a href='changefirstname.php'>edit</a></td> </tr> <tr> <td><td>Last Name:</td> <td>{$info['lastname']}</td> <td><a href='changelastname.php'>edit</td> </tr> <tr> <td></td> <td>email:</td> <td>{$info['email']}</td> <td><a href='changeemail.php'>edit</td> </tr> <tr> <td><td>password:</td> <td>********</td> <td><a href='changepassword.php'>edit</td> </tr> </table> </body> </html>
Comment