June 19th, 2006, 08:05 PM
|
#1 (permalink)
|
| Junior Member
Join Date: Jun 2006
Posts: 1
|
I'm having a small problem creating multiple tables in dreamweaver. I'm probably doing something wrong but here is my html webpage. It's for a friend and I can't figure out why the middle table is shifting, and whenever I resize it it messes up, it's weird. Can someone please put this in dreamweaver and help me out? Thanks. Code: <!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>Template</title>
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
}
body {
background-color: #FFFFFF;
}
a:link {
color: #0000FF;
}
a:visited {
color: #0000FF;
}
a:hover {
color: #FF0000;
}
a:active {
color: #0000FF;
}
.style3 {font-size: 24px}
-->
</style></head>
<body>
<div align="center">
<table width="900" border="1" cellpadding="5" cellspacing="5">
<tr>
<td><div align="center">
<p><strong><span class="style3">Susan Bristol Woman Collection</span></strong></p>
<table width="850" border="1" cellpadding="5" cellspacing="5">
<tr>
<td width="150" valign="top"><div align="center"><strong>Description:</strong></div></td>
<td width="659"><div align="center">
<table border="1" cellpadding="3" cellspacing="3">
<tr>
<td width="130" valign="top"><div align="left">Company:</div></td>
<td width="502"><div align="left">Susan Bristol</div></td>
</tr>
<tr>
<td width="130" valign="top"><div align="left">Size:</div></td>
<td width="502"><div align="left">20W</div></td>
</tr>
<tr>
<td width="130" valign="top"><div align="left">Print:</div></td>
<td width="502"><div align="left">Beautiful flowers.</div></td>
</tr>
<tr>
<td width="130" valign="top"><div align="left">Fabric:</div></td>
<td width="502"><div align="left">98% cotton, 2% spandex.</div></td>
</tr>
<tr>
<td colspan="2"><div align="center">Items sold are from a non-smokie/non-pet household. We welcome questions prior to bidding to assure your satisfaction.<br />
<br />
Make sure to check out my other auctions!</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td width="150" valign="top"><div align="center"><strong>Flat Fee/Shipping & Handling Costs:</strong></div></td>
<td width="659"><div align="center">
<table border="1" cellpadding="3" cellspacing="3">
<tr>
<td colspan="2"><div align="center">Standard Delivery is $5.00 in plastic mailer.<br />
International shipping will be determined upon winning.<br />
Special or expedited shipping can be quoted upon request.</div></td>
</tr>
<tr>
<td width="130" valign="top"><div align="left">Optional Shipping Add-ons:</div></td>
<td width="502"><div align="left">Insurance is optional and costs an additional $1.30 (up to $50.00), $2.20 ($50.01 -$100.00). Tracking is available for an additional $0.45 cents on Priority Mail or $0.55 cents on Parcel Post, 1st Class, and Media Mail. I will only ship Monday - Friday.</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td width="150" valign="top"><div align="center"><strong>Payment Terms and Choices:</strong></div></td>
<td width="659"><div align="center">
<table border="1" cellpadding="3" cellspacing="3">
<tr>
<td width="130" valign="top"><div align="left">Payment Due:</div></td>
<td width="502"><div align="left">Within 3 days from close of auction.</div></td>
</tr>
<tr>
<td colspan="2"><div align="center">Please remember to refer to your auction number when making payment and corresponding!<br />
<br />
My prefered method of payment is: PayPal. Other forms of payment accepted are Personal Check (shipment may be delayed awaiting clearing of check), Cashier's Check, Money Orders, and Cash.
Items will be re-auctioned and a non-payment alert issued if buyer doesn't follow through within terms.</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td colspan="2"><div align="center">I'd like to THANK YOU for looking!</div></td>
</tr>
</table>
</div></td>
</tr>
</table>
</div>
</body>
</html> |
| |