mikebyrne Posted March 2, 2008 Share Posted March 2, 2008 I want the line that stops just above address to go down under the insert button. Any help doing this would be great At present my page is coded like this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>e-commerce admin page sample |item</title> <link href="../Admin_files/admin.css" rel="stylesheet" type="text/css" /> <script type="text/JavaScript" src="../Admin_files/wrapper.js"></script> </head> <body> <div id="Box"> <div id="logoBox"><a href="http://www.btrax.com/" target="_blank"><img src="../Admin_files/logo.gif" width="51" height="125" border="0" /></a></div> <div id="contentBox"> <!-- logo start --> <div id="container"> <div class="padTop28"> <!-- --> </div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <!-- logo finish --> <!-- menu start --> <div id="container"> <div id="menu1"> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../admin_files/new.php" class="black">Order</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../admin_files/sales.php" class="black">Sales</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_on"><a href="../admin_files/list.php" class="black">Edit item</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../shipping/current.php" class="black">Postage fee</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_on"><!-- --></div> <div id="menu_text_off"><a href="../shipping/current.php" class="black_on">Add User</a></div> <div id="menu_space1"><!-- --></div> <div id="menu_off"><!-- --></div> <div id="menu_text_off"><a href="../shipping/current.php" class="black">Add Product</a></div> <div id="menu_space1"><!-- --></div> </div> <div class="clr"><!-- --></div> <div class="clr"> <!-- --> </div> <div class="padTop5"> <!-- --> </div> <div class="clr"> <!-- --> </div> <div id="dotted"> <!-- --> </div> <div class="clr"> <!-- --> </div> <div class="padTop5"> <!-- --> </div> <div class="clr"> <!-- --> </div> <div id="menu2"> <div id="menu_hide"> <!-- --> </div> <div id="menu_text_off"> </div> <div id="menu_space1"> <!-- --> </div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <div class="padTop38"> <!-- --> </div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <!-- menu finish --> <!-- top start --> <div id="container"> <div id="line"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <div id="containerBg1"> <div class="padTop15"> <!-- --> </div> <div class="clr"> <!-- --> </div> <div id="titleText">REGISTER EMPLOYEE</div> <div class="clr"> <!-- --> </div> <div class="padTop15"> <!-- --> </div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <!-- top finish --> <!-- data title start --> <div id="containerBg2"> <div class="padTop2"> <!-- --> </div> <div class="clr"> <!-- --> </div> <form name="form1" method="post" action="signup_ac.php"> <table align="center"> <tr valign="baseline"> <td nowrap align="right">Name:</td> <td><input type="text" name="name" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Address:</td> <td><input type="text" name="address" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Address1:</td> <td><input type="text" name="address1" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Address2:</td> <td><input type="text" name="address2" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Address3:</td> <td><input type="text" name="address3" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Address4:</td> <td><input type="text" name="address4" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">County:</td> <td><input type="text" name="county" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Zip:</td> <td><input type="text" name="zip" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Telephone:</td> <td><input type="text" name="telephone" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Email:</td> <td><input type="text" name="email" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Username:</td> <td><input type="text" name="username" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Password:</td> <td><input type="password" name="password" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right"> </td> <td><input type="submit" value="Insert record"></td> </tr> </table> </form> <p> </p> </div> <!-- btm start --> <div id="containerBg1"> <div class="padTop15"> <!-- --> </div> <div class="clr"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <div id="container"> <div id="line"> <!-- --> </div> </div> <div class="clr"> <!-- --> </div> <div class="padTop16"> <!-- --> </div> <div class="clr"> <!-- --> </div> <!-- btm finish --> </div> </body> </html> My CSS looks like this /* CSS Document */ #Box{ width:931px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } #logoBox{ width:81px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; background-image:url(../Admin_files/bg_logo.gif); float:left; } #contentBox{ width:850px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:right; } .clr { clear:both; } .clrIE { clear:both; display:inline; } .textError{ color:#b91518; } body { font-family: Arial, Helvetica, sans-serif; background-image:url(../Admin_files/bg_logo.gif); background-repeat:repeat-y; background-color: #ffffff; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; font-size: 11px; color: #595959; line-height:150%; } #container { width:850px; margin-left: auto; margin-right: auto; } #containerBg1 { width:850px; margin-left: auto; margin-right: auto; background-image:url(../Admin_files/bg01.gif); } #containerBg2 { width:850px; height:20px; margin-left: auto; margin-right: auto; background-image:url(../Admin_files/bg02.gif); } #containerBg3 { width:850px; margin-left: auto; margin-right: auto; background-image:url(../Admin_files/bg03.gif); } #containerBg4 { width:850px; margin-left: auto; margin-right: auto; background-image:url(../Admin_files/bg04.gif); } #dotted{ width:auto; height:1px; background-image:url(../Admin_files/bg05.gif); } #line{ width:auto; height:1px; background-color:#c6c5c5; } #logo { width:850px; height:50px; background-image:url(../Admin_files/logo.gif); background-repeat:no-repeat; } #frameIn1{ width:850px; height:20px; background-image:url(../Admin_files/bg01.gif); } #dataTitle{ width:850px; height:20px; background-image:url(../Admin_files/bg02.gif); } #titleBox{ width:850px; height:20px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } #dottedIn{ width:850px; height:1px; background-image:url(../Admin_files/bg05.gif); padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } #menu_off{ width:6px; height:6px; padding:0px 0px 0px 0px; margin:5px 0px 0px 0px; float:left; background-image:url(../Admin_files/menu_off.gif); background-repeat:no-repeat; } #menu_on{ width:6px; height:6px; padding:0px 0px 0px 0px; margin:5px 0px 0px 0px; float:left; background-image:url(../Admin_files/menu_on.gif); background-repeat:no-repeat; } #menu_hide{ width:6px; height:6px; padding:0px 0px 0px 0px; margin:5px 0px 0px 0px; float:left; } #menu_text_off{ width:auto; height:auto; padding:0px 0px 0px 6px; margin:0px 0px 0px 0px; float:left; } #menu_text_on{ width:auto; height:auto; padding:0px 0px 0px 6px; margin:0px 0px 0px 0px; font-weight:bold; color:#000000; float:left; } #menu_text_on_hide{ width:auto; height:auto; padding:0px 0px 0px 6px; margin:0px 0px 0px 0px; font-weight:bold; color:#ffffff; float:left; } #menu_space1{ width:48px; height:6px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } #menu_space2{ width:24px; height:6px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } .textWhite{ color:#FFFFFF; } .textBlack{ color:#000000; } .textBlackB{ color:#000000; font-weight:bold; } #btn{ width:818px; height:auto; padding:0px 32px 0px px; margin:0px 0px 0px 0px; text-align:right; } #btn2{ width:818px; height:auto; padding:0px 0px 0px 32px; margin:0px 0px 0px 0px; text-align:left; } #btn3{ width:818px; height:auto; padding:0px 0px 0px 32px; margin:0px 0px 0px 0px; text-align:center; } #btnL{ width:auto; height:23px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:right; } #btnR{ width:auto; height:23px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:right; } #btnSpace{ width:16px; height:23px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:right; } #btn_text{ width:auto; height:auto; padding:0px 32px 0px 32px; margin:0px 0px 0px 0px; text-align:center; } #text_confirm{ width:auto; height:30px; padding:0px 32px 0px 32px; margin:0px 0px 0px 0px; text-align:right; } #titleText{ width:auto; height:auto; padding:0px 32px 0px 18px; margin:0px 0px 0px 0px; color:#000000; font-weight:bold; text-align:left; } #sales_text_and{ width:auto; height:auto; padding:0px 32px 0px 90px; margin:0px 0px 0px 0px; text-align:left; } .tableData{ width:850px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:center; } .editLeft{ width:324px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } .editRight{ width:526px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:right; } .editLeftBox{ width:291px; height:auto; padding:0px 0px 0px 33px; margin:0px 0px 0px 0px; float:left; } .editLeftText{ width:33px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editLeftForm{ width:258px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRightBox{ width:526px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } .editRightText{ width:74px; height:auto; padding:3px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRightForm{ width:452px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadio1{ width:24px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadio2{ width:50px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadio3{ width:24px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadio4{ width:50px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadio5{ width:100px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadioLink1{ width:24px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadioLink2{ width:50px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadioLink3{ width:24px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadioLink4{ width:120px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editRadioLink5{ width:100px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editItemPrice1{ width:14px; height:auto; padding:3px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editItemPrice2{ width:100px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSize1{ width:266px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSize2{ width:24px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSize3{ width:40px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSize4{ width:24px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSize5{ width:40px; height:auto; padding:2px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSize6{ width:99px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:center; float:left; } .editSize7{ width:33px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:center; float:left; } .editSizeTitle1{ width:266px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSizeTitle2{ width:128px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:left; float:left; } .editSizeTitle3{ width:99px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; text-align:center; float:left; } .editSizeTitle4{ width:33px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } .editSizeLineL{ width:493px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } .editSizeLineR{ width:33px; height:auto; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; float:left; } .padTop400 { padding-top:400px; } .padTop300 { padding-top:300px; } .padTop240 { padding-top:240px; } .padTop220 { padding-top:220px; } .padTop200 { padding-top:200px; } .padTop100 { padding-top:100px; } .padTop90 { padding-top:90px; } .padTop80 { padding-top:80px; } .padTop77 { padding-top:77px; } .padTop75 { padding-top:75px; } .padTop70 { padding-top:70px; } .padTop60 { padding-top:60px; } .padTop50 { padding-top:50px; } .padTop47 { padding-top:47px; } .padTop46 { padding-top:46px; } .padTop41 { padding-top:41px; } .padTop40 { padding-top:40px; } .padTop38 { padding-top:38px; } .padTop37 { padding-top:37px; } .padTop36 { padding-top:36px; } .padTop35 { padding-top:35px; } .padTop33 { padding-top:33px; } .padTop32 { padding-top:32px; } .padTop31 { padding-top:31px; } .padTop30 { padding-top:30px; } .padTop29 { padding-top:29px; } .padTop28 { padding-top:28px; } .padTop27 { padding-top:27px; } .padTop24 { padding-top:24px; } .padTop23 { padding-top:23px; } .padTop22 { padding-top:22px; } .padTop20 { padding-top:20px; } .padTop19 { padding-top:19px; } .padTop18 { padding-top:18px; } .padTop17 { padding-top:17px; } .padTop16 { padding-top:16px; } .padTop15 { padding-top:15px; } .padTop14 { padding-top:14px; } .padTop13 { padding-top:13px; } .padTop12 { padding-top:12px; } .padTop11 { padding-top:11px; } .padTop10 { padding-top:10px; } .padTop9 { padding-top:9px; } .padTop8 { padding-top:8px; } .padTop7 { padding-top:7px; } .padTop6 { padding-top:6px; } .padTop5 { padding-top:5px; } .padTop4 { padding-top:4px; } .padTop3 { padding-top:3px; } .padTop2 { padding-top:2px; } .padTop1 { padding-top:1px; } a:visited { text-decoration: none; color: #879cc3; } a:link { text-decoration: none; color: #879cc3; } a:hover { text-decoration: underline; color: #879cc3; } a:active { text-decoration: none; color: #879cc3; } a.black:link {color: #575757; text-decoration: none;} a.black:visited {text-decoration: none; color: #575757;} a.black:hover {text-decoration: underline; color: #879cc3;} a.black:active {text-decoration: none; color: #879cc3;} a.black_on:link {color: #000000; text-decoration: none;} a.black_on:visited {text-decoration: none; color: #000000;} a.black_on:hover {text-decoration: underline; color: #879cc3;} a.black_on:active {text-decoration: none; color: #000000;} input.order1Form1{ width:166px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.coupon2Form1{ width:200px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.coupon2Form2{ width:40px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.shippingForm1{ width:40px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.newsUpFile{ width:245px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.newsEditForm01{ width:418px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.newsEditForm02{ width:73px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } textarea.newsEditForm03{ width:418px; height:240px; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.itemEditForm01{ width:418px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.itemEditForm02{ width:200px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } textarea.itemEditForm03{ width:418px; height:240px; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } input.itemEditForm04{ width:73px; height:auto; font-size:11px; background-color: #ffffff; border: solid 1px; border-color: #c3c3c3; } hr { border-top:none; border-bottom: 1px dashed #A5AEC5; } Link to comment https://forums.phpfreaks.com/topic/94083-white-background-table-structure-help/ Share on other sites More sharing options...
haku Posted March 2, 2008 Share Posted March 2, 2008 Got a link? Thats way too much code to go through to know what you are talking about. Link to comment https://forums.phpfreaks.com/topic/94083-white-background-table-structure-help/#findComment-481985 Share on other sites More sharing options...
mikebyrne Posted March 3, 2008 Author Share Posted March 3, 2008 No link but i attached a word doc so you can see what i mean Link to comment https://forums.phpfreaks.com/topic/94083-white-background-table-structure-help/#findComment-482010 Share on other sites More sharing options...
haku Posted March 3, 2008 Share Posted March 3, 2008 Sorry, I'm a link only type guy myself. Maybe someone else will help though. Good luck! Link to comment https://forums.phpfreaks.com/topic/94083-white-background-table-structure-help/#findComment-482106 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.