Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do i remove the space between header and boxes


oberheimer

Recommended Posts

Posted

How do i remove the space between header and boxes

 

look here at my site one tiger

 

i also need to remove the space between the boxes, like this:

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

Posted

I don't understand your question. If you want to remove the space between the heading and the box below, look in index.php for

  <tr>
           <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
           <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
         </tr>
       </table></td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>

and change it to

  <tr>

<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

</tr>

</table></td>

</tr>

CODE]But if you are talking about spacing around the boxes, search the page for instances of cellpadding and set it to 0.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

All of My Addons

Get the latest versions of my addons

Recommended SEO Addons

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...