Thanks :-)
I didn't end up having to do anything in css or on any other pages, but I did have to make some modifications to the code that Jason sent me. I don't have "add to cart buttons" or long descriptions on my product_results page. This is the code I ended up with after making the changes to my page and getting the products to line up properly in rows (if there's more than 3 items on a page):
<?php $cellCount = 0; ?>
<?php do { ?>
<?php if($cellCount == 0) { ?><tr><?php }?>
<td class="WADAResultsEntry"><div class="WADAResultThumbArea"><a href="Products_Detail.php?ProductID=<?php echo(rawurlencode($row_WADAProducts['ProductID'])); ?>" title="<?php echo $row_WADAProducts["ProductName"]; ?>"><img class="WADAResultThumb" border="0" src="Images/Upload/<?php echo $row_WADAProducts["ProductThumb"]; ?>" alt="<?php echo $row_WADAProducts["ProductName"]; ?>" /></a></div>
<div class="WADAResultInfoArea2">
<div class="WADAResultTitle">
<table width="98%" height="73" class="WADAEditButton_Table">
<tr>
<td align="left"><p><a href="Products_Detail.php?ProductID=<?php echo(rawurlencode($row_WADAProducts['ProductID'])); ?>"><?php echo $row_WADAProducts["ProductName"]; ?></a><span class="WADAResultPrice"><br />
</span></p>
<div class="WADADetailsPrice">$<?php echo number_format($row_WADAProducts["ProductPrice"],2); ?></div>
<p>
<?php
if ($row_WADAProducts["NumLeft"] > 0 || $row_WADAProducts["ProductUnlimited"] != 0) {
?>
</p>
<form action="<?php echo $_SERVER["PHP_SELF"]; ?><?php echo (isset($_SERVER["QUERY_STRING"]) && $_SERVER["QUERY_STRING"] != "")?"?".$_SERVER["QUERY_STRING"]:""; ?>" method="post" id="WA_Store_Cart_1_ATC_<?php echo $row_WADAProducts["ProductID"]; ?>7">
<input type="hidden" name="WA_Store_Cart_1_ID_Add6" value="<?php echo $row_WADAProducts["ProductID"]; ?>" />
<input type="hidden" name="WA_Store_Cart_1_Quantity_Add6" value="1" size="4" style="margin-bottom:2px"/>
</form>
<?php
} else {
?>
Sold out!
<?php
}
?></td>
</tr>
</table>
<table width="92%" class="WADAEditButton_Table">
<tr>
<td align="right"> </td>
<td valign="top"> </td>
</tr>
</table>
</div>
<div class="WADAResultDescription"></div>
</div></td>
<?php $cellCount ++; ?>
<?php if($cellCount == 3) { ?></tr><?php $cellCount = 0; } ?>
<?php } while ($row_WADAProducts = mysql_fetch_assoc($WADAProducts)); ?>


