Forums | MacLife
You are not logged in.
#1 2008-02-29 7:36 pm
Spacing issues
Im having an issue where in safari on a website i'm making the spacing looks fine in the product menu. But in firefox and windows i get white spaces.
THis is how its not supposed to look on the left hand side.
http://frameworksracing.com/catalog/about.php
This is how its supposed to look of the left hand side menu bar
http://frameworksracing.com/catalog/
I was wondering if any of you web dev could help me with this issue..
Thank you!
Offline
#2 2008-02-29 10:11 pm
Re: Spacing issues
It looks fine in Firefox if you remove all of the "height" attributes from the DWLayoutTable part
Code:
<table width="256" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="8" valign="top"><img src="includes/sts_templates/frameworks/images/TFW_31.jpg" width="8" /></td>
<td colspan="3" valign="top"><img src="includes/sts_templates/frameworks/images/newproducts.jpg" width="248" /></td>
</tr>
<tr>
<td valign="top"><img src="includes/sts_templates/frameworks/images/TFW_33.jpg" width="8" /></td>
<td width="12" valign="top"><img src="includes/sts_templates/frameworks/images/TFW_34.jpg" width="12" /></td>
<td valign="top" background="includes/sts_templates/frameworks/images/NewproductsMid.jpg"><div align="center"><span class="style1"><table border="0" width="100%" cellspacing="0" cellpadding="3" class="infoBoxContents">
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" ></td>
</tr>
<tr>
<td align="center" class="boxText"><a href="http://frameworksracing.com/catalog/product_info.php?products_id=174"><img src="images/114.jpg" border="0" alt="Hydraulic Pedal Package For Cable Throttle" title=" Hydraulic Pedal Package For Cable Throttle " width="150" ></a><br><a href="http://frameworksracing.com/catalog/product_info.php?products_id=174">Hydraulic Pedal Package For Cable Throttle</a><br>$299.00</td>
</tr>
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" ></td>
</tr>
</table>Offline
#3 2008-03-02 9:15 pm
Re: Spacing issues
I tried deleting all the heights and a no go.
http://frameworksracing.com/catalog/ind … 5397be883d
Offline
#4 2008-03-02 9:24 pm
Re: Spacing issues
The section of code I quoted above looks like this in your current page:
Code:
<table width="256" height="349" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="8" height="123" valign="top"><img src="includes/sts_templates/frameworks/images/TFW_31.jpg" width="8" height="123" /></td>
<td colspan="3" valign="top"><img src="includes/sts_templates/frameworks/images/newproducts.jpg" width="248" height="123" /></td>
</tr>
<tr>
<td height="218" valign="top"><img src="includes/sts_templates/frameworks/images/TFW_33.jpg" width="8" height="218" /></td>
<td width="12" valign="top"><img src="includes/sts_templates/frameworks/images/TFW_34.jpg" width="12" height="218" /></td>
<td width="225" valign="top" background="includes/sts_templates/frameworks/images/NewproductsMid.jpg"><div align="center"><span class="style1"><table border="0" width="100%" cellspacing="0" cellpadding="3" class="infoBoxContents">
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
</tr>
<tr>
<td align="center" class="boxText"><a href="http://frameworksracing.com/catalog/product_info.php?products_id=176&osCsid=2059cc13612301fb4277c45397be883d"><img src="images/124.jpg" border="0" alt="Hydraulic Pedal Package Without Throttle" title=" Hydraulic Pedal Package Without Throttle " width="150" height="150"></a><br><a href="http://frameworksracing.com/catalog/product_info.php?products_id=176&osCsid=2059cc13612301fb4277c45397be883d">Hydraulic Pedal Package Without Throttle</a><br>$272.00</td>
</tr>
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
</tr>
</table>Offline


