Oscommerce Webshop: fout in de layout van het produkt

Status
Niet open voor verdere reacties.

kuipert

Gebruiker
Lid geworden
28 mei 2009
Berichten
63
Ik heb mijn shop bijna klaar (op de invulling na).

Nadat ik een tijdje geworsteld heb met meerdere plaatjes, heb ik eindelijk iets gevonden dat mij paste.

Alles werkt perfekt.

Het enige probleempje wat ik nog heb is dat het product op de detail pagina geheel buiten de shop wordt geplaatst.

Ook de witte achtergrond is verdwenen.

Kijk voor een voorbeeld op: http://stoffgrosshandel-holland.de/catalog/product_info.php?cPath=32&products_id=60&language=de

Dit is de code die ik gebruikt heb voor de pagina:

PHP:
<?php
/*
  $Id: product_info.php 1739 2007-12-20 00:52:16Z hpdl $

  osCommerce, Open Source E-Commerce Solutions
  [url]http://www.oscommerce.com[/url]

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');
  require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);
// Simple multi image addon	
  $image_group = TINY_IMAGE_GROUP_SIZE; //Number of images to show per row/column
	$vertical_format = (ADDITIONAL_IMAGE_FORMAT == 'vertical');
	$max_title_length = 40; //Set the maximm length of popup titles before they are broken into multiple lines.
  $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, p.products_image_array, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
    $product_info = tep_db_fetch_array($product_info_query);
		$products_image_array = unserialize($product_info['products_image_array']);
    if (!is_array($products_image_array)) $products_image_array = array();
// EOF Simple multi image addon			
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html <?php echo HTML_PARAMS; ?>>
<head>
<!-- Simple multi image addon -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<!-- EOF Simple multi image addon	 -->
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<!-- Simple multi image addon -->
<script type="text/javascript" src="<?php echo DIR_WS_IMAGES ?>js/jquery.js"></script>
<script src="<?php echo DIR_WS_IMAGES ?>js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="<?php echo DIR_WS_IMAGES ?>js/prettyPhoto.css" type="text/css" media="screen">
	<script type="text/javascript" charset="utf-8">

		$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 30, /* padding for each side of the picture */
				opacity: <?php echo (BKG_LUMA/10); ?>, /* Value betwee 0 and 1 */
				showTitle: true, /* true/false */
				allowresize: true, /* true/false */
				counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
				theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square */
				hideflash: false, /* Hides all the flash object on a page, set to TRUE if flash appears over prettyPhoto */
				modal: false, /* If set to true, only the close button will close the window */
				changepicturecallback: function(){}, /* Called everytime an item is shown/changed */
				callback: function(){} /* Called when prettyPhoto is closed */
			});
		});
	</script>

<!-- EOF Simple multi image addon -->
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->

<!-- body //-->
<table border="0" width="100%" cellspacing="3" cellpadding="3">
  <tr>
    <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- left_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
    </table></td>
<!-- body_text //-->
    <td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
<?php
// Simple multi image addon	
  if (!tep_db_num_rows($product_info_query)) {
// EOF Simple multi image addon		
?>
      <tr>
        <td><?php new infoBox(array(array('text' => TEXT_PRODUCT_NOT_FOUND))); ?></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
      <tr>
        <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
          <tr class="infoBoxContents">
            <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
              <tr>
                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
              </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
<?php
  } else {
// Simple multi image addon	section moved

    tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");

    if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
      $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
    } else {
      $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    }

    if (tep_not_null($product_info['products_model'])) {
      $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
    } else {
      $products_name = $product_info['products_name'];
    }
?>
      <tr>
        <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
          <tr>
            <td class="pageHeading" valign="top"><?php echo $products_name; ?></td>
            <td class="pageHeading" align="right" valign="top"><?php echo $products_price; ?></td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
      <tr>
        <td class="main">
<?php
    if (tep_not_null($product_info['products_image'])) {
?>
         <!-- Simple multi image addon -->
				 <div id="fancy">
				  <table border="0" cellspacing="0" cellpadding="2" align="right">
            <tr>
              <td align="center" class="smallText">

<?php if (strlen($product_info['products_name']) > $max_title_length) {  $title = wordwrap(htmlspecialchars($product_info['products_name']), $max_title_length, '<br>');
         } else { $title = htmlspecialchars($product_info['products_name']); } 
$m_source = ''; $thumb = (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On'); if ($thumb) { preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $product_info['products_image'],'','','','','',5), ENT_NOQUOTES), $image);  $m_source=str_replace('&amp;','&',$image[1]); }
  echo '<a  rel="prettyPhoto[gallery1]" title="'.$title.'" href="' . ($m_source ? $m_source : DIR_WS_IMAGES . $product_info['products_image']) . '" alt="' . $product_info['products_name'] . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"', false, 5) . '</a><br />'; 
               if(!$vertical_format) { echo ''; $row = 1; reset($products_image_array); foreach($products_image_array as $value) { 
							 if ($thumb) {					 
							 $source = ''; preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $value,'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&amp;','&',$image[1]); 
							 } 
							 echo '<a  rel="prettyPhoto[gallery1]" title="'.$title.'" href="' . ($source ? $source : DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '</a>'; 
							
								++$row; if ($row > $image_group) { echo '<br />'; $row = 1; } } } 
								echo '</td>';
							 if($vertical_format) { echo '<td>'; $row = 1; reset($products_image_array); foreach($products_image_array as $value) { 
							 if ($thumb) {					 
							 $source = ''; preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $value,'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&amp;','&',$image[1]); 
							 } 
							 echo '<a  rel="prettyPhoto[gallery1]" title="'.$title.'" href="' . ($source ? $source : DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br />' . '</a>'; 
							
									++$row; if ($row > $image_group) { echo '</td><td>'; $row = 1; } } echo '</td>'; } ?>

														
            </tr><?php  echo '<tr><td class="smallText">' . TEXT_CLICK_TO_ENLARGE . '</td></tr>'; ?>
          </table>
					</div>
					<!-- EOF Simple multi image addon -->
<?php
    }
?>
          <!-- </td></tr><tr><td  class="smallText"> --><p><?php echo stripslashes($product_info['products_description']); ?></p>
<?php
    $products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'");
    $products_attributes = tep_db_fetch_array($products_attributes_query);
    if ($products_attributes['total'] > 0) {
?>
          <table border="0" cellspacing="0" cellpadding="2">
            <tr>
              <td class="main" colspan="2"><?php echo TEXT_PRODUCT_OPTIONS; ?></td>
            </tr>
<?php
      $products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name");
      while ($products_options_name = tep_db_fetch_array($products_options_name_query)) {
        $products_options_array = array();
        $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'");
        while ($products_options = tep_db_fetch_array($products_options_query)) {
          $products_options_array[] = array('id' => $products_options['products_options_values_id'], 'text' => $products_options['products_options_values_name']);
          if ($products_options['options_values_price'] != '0') {
            $products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';
          }
        }

        if (isset($cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']])) {
          $selected_attribute = $cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']];
        } else {
          $selected_attribute = false;
        }
?>
            <tr>
              <td class="main"><?php echo $products_options_name['products_options_name'] . ':'; ?></td>
              <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>
            </tr>
<?php
      }
?>
          </table>
<?php
    }
?>
        </td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
<?php
    $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
    $reviews = tep_db_fetch_array($reviews_query);
    if ($reviews['count'] > 0) {
?>
      <tr>
        <td class="main"><?php echo TEXT_CURRENT_REVIEWS . ' ' . $reviews['count']; ?></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
<?php
    }

    if (tep_not_null($product_info['products_url'])) {
?>
      <tr>
        <td class="main"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
<?php
    }

    if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) {
?>
      <tr>
        <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></td>
      </tr>
<?php
    } else {
?>
      <tr>
        <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td>
      </tr>
<?php
    }
?>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
      <tr>
        <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
          <tr class="infoBoxContents">
            <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
              <tr>
                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
                <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td>
                <td class="main" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
              </tr>
            </table></td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
      </tr>
      <tr>
        <td>
<?php
    if ((USE_CACHE == 'true') && empty($SID)) {
      echo tep_cache_also_purchased(3600);
    } else {
      include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
    }
  }
?>
        </td>
      </tr>
    </table></form></td>
<!-- body_text_eof //-->
    <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
    </table></td>
  </tr>
</table>
<!-- body_eof //-->

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->
<br>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Iemand een idee?
 
Laatst bewerkt door een moderator:
Hi

De tabel die nu rechts uitgelijnd wordt valt buiten het content-vak, vandaar dat je dit effect krijgt
Ik heb met Firebug de code iets aangepast, hij staat in de bijlage van deze post

Code:
<!-- header //-->
<!-- start -->
<table style="width: 708px;" align="center" border="0" cellpadding="0" cellspacing="0"> 
	<tbody><tr>
		<td>
			<table style="height: 425px;" border="0" cellpadding="0" cellspacing="0">
				<tbody><tr>
					<td>
						<table style="height: 68px; background: url(&quot;images/top.gif&quot;) repeat scroll 0% 0% transparent;" class="header" border="0" cellpadding="0" cellspacing="0">
							<tbody><tr>
								<td><img src="images/q1.gif" alt="" border="0" height="68" width="36"></td>
								<td>
									<table style="width: 68px;" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr>
											<td>
												<strong>Sprachen:</strong><br>
											</td>
										</tr>
									</tbody></table>
								</td>
								<td>
									<table style="width: 103px;" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr>
											<td><a href="http://stoffgrosshandel-holland.de/catalog/product_info.php?cPath=32&amp;products_id=60&amp;language=en"><img src="includes/languages/english/images/icon.gif" alt="English" title=" English " border="0" height="15" width="24"></a>&nbsp;&nbsp;<a href="http://stoffgrosshandel-holland.de/catalog/product_info.php?cPath=32&amp;products_id=60&amp;language=nl"><img src="includes/languages/dutch/images/icon.gif" alt="Netherlands" title=" Netherlands " border="0" height="15" width="24"></a>&nbsp;&nbsp;<a href="http://stoffgrosshandel-holland.de/catalog/product_info.php?cPath=32&amp;products_id=60&amp;language=de"><img src="includes/languages/german/images/icon.gif" alt="Deutsch" title=" Deutsch " border="0" height="15" width="24"></a>&nbsp;&nbsp;<br></td>
										</tr>
									</tbody></table>
								</td>
								<td><img src="images/z.gif" alt="" border="0" height="68" width="1"></td>
								<td><img src="images/spacer.gif" alt="" border="0" height="1" width="19"></td>	
								<td>
									<table style="width: 20px;" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr>
											<td><img src="images/z1.gif" alt="" border="0" height="19" width="17"><br></td>
										</tr>
									</tbody></table>
								</td>
								<td>
									<table style="width: 226px;" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr>
											<td><strong>Warenkorb &nbsp;</strong><a href="http://stoffgrosshandel-holland.de/catalog/shopping_cart.php">0  Produkte</a><br></td>
										</tr>
									</tbody></table>
								</td>
								<td><img src="images/z.gif" alt="" border="0" height="68" width="1"></td>
								<td><img src="images/spacer.gif" alt="" border="0" height="1" width="21"></td>
								<td>
									<table style="width: 69px;" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr>
											<td>
												<strong>Währungen:</strong><br>
											</td>
										</tr>
									</tbody></table>
								</td>
								<td>
									<table style="width: 121px;" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr>
											<td><form name="currencies" action="http://stoffgrosshandel-holland.de/catalog/product_info.php" method="get"><select name="currency" onchange="this.form.submit();" class="jamp"><option value="EUR" selected="selected">Euro</option></select><input name="cPath" value="32" type="hidden"><input name="products_id" value="60" type="hidden"><input name="language" value="de" type="hidden"></form></td>
										</tr>
									</tbody></table>
								</td>
								<td><img src="images/q2.gif" alt="" border="0" height="68" width="23"></td>
							</tr>
						</tbody></table>
						<table style="height: 357px;" border="0" cellpadding="0" cellspacing="0">
							<tbody><tr>
								<td>
									<br style="line-height: 15px;">
									<a href="http://stoffgrosshandel-holland.de/catalog/index.php"><img src="images/p.jpg" alt="" border="0" height="265" width="708"></a><br>
									<a href="http://stoffgrosshandel-holland.de/catalog/index.php"><img src="includes/languages/german/images/buttons/m1.gif" alt="" border="0" height="55" width="147"></a><a href="http://stoffgrosshandel-holland.de/catalog/products_new.php"><img src="includes/languages/german/images/buttons/m2.gif" alt="" border="0" height="55" width="156"></a><a href="http://stoffgrosshandel-holland.de/catalog/specials.php"><img src="includes/languages/german/images/buttons/m3.gif" alt="" border="0" height="55" width="124"></a><a href="http://stoffgrosshandel-holland.de/catalog/account.php"><img src="includes/languages/german/images/buttons/m4.gif" alt="" border="0" height="55" width="141"></a><a href="http://stoffgrosshandel-holland.de/catalog/contact_us.php"><img src="includes/languages/german/images/buttons/m5.gif" alt="" border="0" height="55" width="140"></a><br>	
									<img src="images/li.gif" alt="" border="0" height="22" width="708"><br>
								</td>
							</tr>
						</tbody></table>
					</td>
				</tr>
			</tbody></table>
<!-- end -->
<!-- start -->
		</td>
	</tr>
	<tr>
		<td style="background: none repeat scroll 0% 0% rgb(39, 39, 39);">
<!-- end -->

<!-- header_eof //-->

<!-- body //-->
<table border="0" cellpadding="3" cellspacing="3" width="100%">
  <tbody><tr>
    <td valign="top" width="BOX_WIDTH"><table border="0" cellpadding="2" cellspacing="0" width="">
<!-- left_navigation //-->
</table><table class="box_width_left" border="0" cellpadding="0" cellspacing="0">
	<tbody><tr><td width="100%">
		<table border="0" cellpadding="0" cellspacing="0">
<!-- categories //-->
          <tbody><tr>
            <td>
<table class="box_header_txt" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td>Kategorien</td>
  </tr>
</tbody></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td><table class="box_body" style="border-style: solid; border-color: rgb(39, 39, 39); border-width: 2px 26px 8px; margin-bottom: 3px;" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td style="border-bottom: 1px solid rgb(54, 54, 54);"><ul><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=17">Baumwolle</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=27">Brautmode</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=36">Brokat</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=18">Dekostoff</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=19">Fell Imitat / Plüsch</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=30">Flammenhemmend&nbsp;(3)</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=33">Futter / Taft</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=21">Kinderstoffe</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=37">Kostüm Stoffe</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=22">Kunstleder</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=23">Leinen</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=24">Molton&nbsp;(3)</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=15">OM Kollektion</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=25">Organza &amp; Co</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=20">Polar Fleece</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=26">Polyester</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=28">Samt / Pannesamt</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=29">Satin</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=16">Schnäppchen</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=31">Segeltuch / Nessel</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=35">Spitze</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=32">Steppstoffe&nbsp;(1)</a></li><li class="bg_list"><a href="http://stoffgrosshandel-holland.de/catalog/index.php?cPath=34">Wolle</a></li></ul><br style="line-height: 1px;"><br style="line-height: 11px;"></td>
  </tr>
</tbody></table>
</td>
  </tr>
</tbody></table>
            </td>
          </tr>
<!-- categories_eof //-->
<!-- whats_new //-->
          <tr>
            <td class="">
<table class="box_header_txt" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td>Neue Produkte</td>
  </tr>
</tbody></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td><table class="box_body" style="border-style: solid; border-color: rgb(39, 39, 39); border-width: 2px 26px 8px; margin-bottom: 3px;" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td style="border-bottom: 1px solid rgb(54, 54, 54);" align="center">
									<table align="center" border="0" cellpadding="0" cellspacing="0">
										<tbody><tr><td class="pic" align="center" height="86"><br style="line-height: 1px;"><br style="line-height: 5px;">
<a href="http://stoffgrosshandel-holland.de/catalog/product_info.php?products_id=55"><img title=" Molton B1 Bühnenmolt​on Schwarz Studio 300cm Breit " alt="Molton B1 Bühnenmolt​on Schwarz Studio 300cm Breit" src="images/molton%20zwart.JPG" border="0" height="110" width="140"></a>

												<br style="line-height: 1px;"><br style="line-height: 5px;">
										</td></tr>
										<tr><td align="center" height="42">
										
	  <span><a href="http://stoffgrosshandel-holland.de/catalog/product_info.php?products_id=55">Molton B1 Bühne</a></span>
	  <br><br style="line-height: 10px;">
												<span class="productSpecialPrice">7.90EUR</span>
										</td></tr>
									</tbody></table>
								 <br style="line-height: 1px;"><br style="line-height: 11px;"></td>
  </tr>
</tbody></table>
</td>
  </tr>
</tbody></table>
            </td>
          </tr>
<!-- whats_new_eof //-->
<!-- tell_a_friend //-->
          <tr>
            <td>
<table class="box_header_txt" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td>Weiterempfehlen</td>
  </tr>
</tbody></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td><table class="box_body" style="border-style: solid; border-color: rgb(39, 39, 39); border-width: 2px 26px 8px; margin-bottom: 3px;" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td style="border-bottom: 1px solid rgb(54, 54, 54);" align="center"><form method="get" action="http://stoffgrosshandel-holland.de/catalog/tell_a_friend.php" name="tell_a_friend">
						
						<table style="height: 3px;" class="" border="0" cellpadding="0" cellspacing="4">
							<tbody><tr><td style="width: 100%; vertical-align: middle;">
								<input style="width: 100%;" size="10" name="to_email_address" type="text"></td><td class="bg_input">
								<input title=" Weiterempfehlen " alt="Weiterempfehlen" src="includes/languages/german/images/buttons/button_tell_a_friend.gif" border="0" type="image"><input value="60" name="products_id" type="hidden">
							</td></tr>
							<tr><td colspan="2">Verwenden Sie Stichworte, um ein Produkt zu finden.</td></tr>
						</tbody></table>							   
						<br style="line-height: 1px;"><br style="line-height: 11px;"></form></td>
  </tr>
</tbody></table>
</td>
  </tr>
</tbody></table>
            </td>
          </tr>
<!-- tell_a_friend_eof //-->
		</tbody></table>
	</td>
	</tr>
</tbody></table>
<!-- left_navigation_eof //-->
    </td>
<td>
<form name="cart_quantity" action="http://stoffgrosshandel-holland.de/catalog/product_info.php?cPath=32&amp;products_id=60&amp;language=de&amp;action=add_product" method="post"><table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tbody><tr>
        <td><table border="0" cellpadding="0" cellspacing="0" width="100%">
          <tbody><tr>
            <td class="pageHeading" valign="top">Stepp</td>
            <td class="pageHeading" align="right" valign="top">5.90EUR</td>
          </tr>
        </tbody></table></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" alt="" border="0" height="10" width="100%"></td>
      </tr>
      <tr>
        <td class="main">
         <!-- Simple multi image addon -->
				 <div id="fancy">
				  <table align="right" border="0" cellpadding="2" cellspacing="0">
            <tbody><tr>
              <td class="smallText" align="center">

<a rel="prettyPhoto[gallery1]" title="Stepp" href="images/step%20brons%20vlak.JPG" alt="Stepp" target="_blank"><img src="images/step%20brons%20vlak.JPG" alt="Stepp" title=" Stepp " border="0" height="110" hspace="5" vspace="5" width="140"></a><br><a rel="prettyPhoto[gallery1]" title="Stepp" href="images/step%20brons%20vlak%202.JPG" target="_blank"><img src="images/step%20brons%20vlak%202.JPG" alt="Stepp" title=" Stepp " border="0" height="30" hspace="5" vspace="5" width="30"></a></td>
														
            </tr><tr><td class="smallText">Für eine grössere Darstellung<br>klicken Sie auf das Bild.</td></tr>          </tbody></table>
					</div>
					<!-- EOF Simple multi image addon -->
          <!-- </td></tr><tr><td  class="smallText"> --><p>Einzigartig !!

Sehr weicher Griff, glatte Ware

Steppstoff mit EDLER Motiv !!

 

Farbe Broze Gold

 

Linke Seite nicht gefuttert

Stepp Dicke: ca. 6-7mm

Stoffbreite 140cm, Gewicht ca. 280gr Laufmeter

Zusammensetzung  Oberfläche: Polyester + Acetat

Stepp innenfutter: 100% Polyester</p>
        </td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" alt="" border="0" height="10" width="100%"></td>
      </tr>
      <tr>
        <td class="smallText" align="center">Dieses Produkt haben wir am Sunday, 07. March 2010 in unseren Katalog aufgenommen.</td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" alt="" border="0" height="10" width="100%"></td>
      </tr>
      <tr>
        <td><table class="infoBox" border="0" cellpadding="2" cellspacing="1" width="100%">
          <tbody><tr class="infoBoxContents">
            <td><table border="0" cellpadding="2" cellspacing="0" width="100%">
              <tbody><tr>
                <td width="10"><img src="images/pixel_trans.gif" alt="" border="0" height="1" width="10"></td>
                <td class="main"><a href="http://stoffgrosshandel-holland.de/catalog/product_reviews.php?cPath=32&amp;products_id=60&amp;language=de"><img src="includes/languages/german/images/buttons/button_reviews.gif" alt="Bewertungen" title=" Bewertungen " border="0" height="16" width="98"></a></td>
                <td class="main" align="right"><input name="products_id" value="60" type="hidden"><input src="includes/languages/german/images/buttons/button_in_cart.gif" alt="In den Warenkorb" title=" In den Warenkorb " border="0" type="image"></td>
                <td width="10"><img src="images/pixel_trans.gif" alt="" border="0" height="1" width="10"></td>
              </tr>
            </tbody></table></td>
          </tr>
        </tbody></table></td>
      </tr>
      <tr>
        <td><img src="images/pixel_trans.gif" alt="" border="0" height="10" width="100%"></td>
      </tr>
      <tr>
        <td>
        </td>
      </tr>
    </tbody></table></form>
</td></tr></tbody></table></td>
<!-- body_text //-->
    
<!-- body_text_eof //-->
    <td valign="top" width="BOX_WIDTH"><table border="0" cellpadding="2" cellspacing="0" width="">
<!-- right_navigation //-->
</table><table class="box_width_right" border="0" cellpadding="0" cellspacing="0">
	<tbody><tr><td></td>
		<td width="100%">
			<table border="0" cellpadding="0" cellspacing="0">
				<tbody><tr><td></td></tr>
			</tbody></table>
		</td>
	</tr>
</tbody></table>

<!-- right_navigation_eof //-->
    </td></tr></tbody></table>
  

<!-- body_eof //-->

<!-- footer //-->
		
	
	
		
			<table style="height: 126px;" class="footer" border="0" cellpadding="0" cellspacing="0">
				<tbody><tr>
					<td><img src="images/q3.gif" alt="" border="0" height="126" width="26"></td>		
					<td style="width: 170px;"><br style="line-height: 47px;"><img src="images/p1.gif" alt="" border="0" height="24" width="148"><br></td>
					<td><img alt="" src="images/z2.gif"></td>	
					<td><img src="images/spacer.gif" alt="" border="0" height="1" width="23"></td>				
					<td style="width: 468px;">
						<br style="line-height: 43px;">
						<font><img src="images/z3.gif" alt="" style="margin-left: 10px;" border="0" height="5" width="6"><a href="http://stoffgrosshandel-holland.de/catalog/index.php"> Homepage</a><img src="images/z3.gif" alt="" border="0" height="5" width="6"><a href="http://stoffgrosshandel-holland.de/catalog/advanced_search.php">erweiterte Suche</a><img src="images/z3.gif" alt="" border="0" height="5" width="6"><a href="http://stoffgrosshandel-holland.de/catalog/reviews.php">Bewertungen</a><img src="images/z3.gif" alt="" border="0" height="5" width="6"><a href="http://stoffgrosshandel-holland.de/catalog/create_account.php">Neues Konto</a><img src="images/z3.gif" alt="" border="0" height="5" width="6"><a href="http://stoffgrosshandel-holland.de/catalog/login.php">Anmelden</a></font><br style="line-height: 1px;">
						  <br style="line-height: 7px;">
						 <a href="http://stoffgrosshandel-holland.de/catalog/index.php">Stoffgrosshandel-holland</a> &nbsp;© 2010<span>&nbsp;&nbsp;<a href="http://stoffgrosshandel-holland.de/catalog/privacy.php">Privatsphäre &nbsp;und Datenschutz</a></span> &nbsp;<span><strong>|</strong></span> &nbsp;<span><a href="http://stoffgrosshandel-holland.de/catalog/conditions.php">Unsere AGB's</a></span></td>	
					<td><img src="images/q4.gif" alt="" border="0" height="126" width="20"></td>		
				</tr>
			</tbody></table>
		
	



<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td align="center"></td>
  </tr>
</tbody></table>
<!-- footer_eof //-->
<br>
<div style="opacity: 0; height: 1470px; display: none; width: 1150px;" class="pp_overlay"></div><div style="top: 928px; left: 525px;" class="pp_pic_holder"><div class="pp_top"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div><div class="pp_content"><a href="#" class="pp_expand" title="Expand the image">Expand</a><div class="pp_loaderIcon"></div><div style="margin-left: 15px;" class="pp_hoverContainer"><a class="pp_next" href="#">next</a><a class="pp_previous" href="#">previous</a></div><div id="pp_full_res"></div><div class="pp_details clearfix"><a class="pp_close" href="#">Close</a><p class="pp_description"></p><div class="pp_nav"><a href="#" class="pp_arrow_previous">Previous</a><p class="currentTextHolder">0/0</p><a href="#" class="pp_arrow_next">Next</a></div></div></div><div class="pp_bottom"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div></div><div style="top: 928px; left: 540px;" class="ppt"></div>
 
Bedankt voor je antwoord.

ook ik heb het nagekeken met firebug, maar ik krijg nog steeds de fout.

Ik denk dat het ligt aan dat ik deze pagina heb aangepast en in de layout iets gedelete heb.


Dits is de code van de originele file:
PHP:
<?php
/*
  $Id: product_info.php,v 1.97 2003/07/01 14:34:54 hpdl Exp $

  osCommerce, Open Source E-Commerce Solutions
  [url]http://www.oscommerce.com[/url]

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');

  require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);

  $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
  $product_check = tep_db_fetch_array($product_check_query);
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script language="javascript"><!--
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
//--></script>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->

<!-- body //-->
<table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
    <td class="col_left">
<!-- left_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
    </td>
<!-- body_text //-->
    <td width="100%" class="col_center"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
<?php
  if ($product_check['total'] < 1) {
?>
      <tr><td>
<? tep_draw_heading_top(); ?>

		<?php echo tep_draw_title_top();?>

					<?php echo TEXT_PRODUCT_NOT_FOUND;?>
			
		<?php echo tep_draw_title_bottom();?>
	
<? tep_draw_heading_top_1(); ?>				  
		

		
		<!-- 
		<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
          <tr class="infoBoxContents">
		  	<td> 
			-->
				<br style="line-height:1px;"><br style="line-height:12px;">
			
				<table border="0" width="100%" cellspacing="0" cellpadding="2">
				  <tr>
					<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
					<td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
					<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
				  </tr>
				</table>
				
			<!-- 	
			</td>
          </tr>
        </table>
		 -->
	
	
<? tep_draw_heading_bottom_1(); ?>

<? tep_draw_heading_bottom(); ?>

<?php
  } else {
    $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
    $product_info = tep_db_fetch_array($product_info_query);

    tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");

    if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
      $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
    } else {
      $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    }

    if (tep_not_null($product_info['products_model'])) {
      $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
    } else {
      $products_name = $product_info['products_name'];
    }
?>
      <tr>
        <td>
		
<? tep_draw_heading_top(); ?>

<?php echo tep_draw_title_top();?>

			<?php echo $breadcrumb->trail(' &raquo; ')?> 
			
<?php echo tep_draw_title_bottom();?>	
	
								
<? tep_draw_heading_top_1(); ?>	
<? tep_draw_heading_top_2(); ?>		
		

<?php
    if (tep_not_null($product_info['products_image'])) {
?>
												<table cellspacing="0" cellpadding="0" border="0" class="product">
													<tr><td>
															<table cellspacing="0" cellpadding="0" border="0">
																<tr><td height="100%">
		<table cellpadding="0" cellspacing="0" border="0" align="left" class="prod_info" style="border-right:13px solid #ffffff;border-left:0px solid #ffffff;">
			<tr><td class="pic" align="center"> <br style="line-height:1px;"><br style="line-height:9px;">
			
<?php /*  echo tep_draw_prod_top();  */?>

<script language="javascript"><!--
document.write('<?php echo '<a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, ' style="margin:0px 0px 0px 0px;"') . ''; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, ' style="margin:0px 0px 0px 0px;"') . ''; ?>
</noscript>

<?php /*  echo tep_draw_prod_bottom();  */?>

			</td></tr>
			<tr><td align="center">
<script language="javascript"><!--
document.write('<?php echo '<div><a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . TEXT_CLICK_TO_ENLARGE . '</a></div>'; ?>');
//--></script>
<noscript>
<?php echo '<div><a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank"><br style="line-height:7px">' . TEXT_CLICK_TO_ENLARGE . '</a></div>'; ?>
</noscript>
			</td></tr>
		</table>
		<table cellpadding="0" cellspacing="0" border="0">
			<tr><td style="vertical-align:middle; height:28px;"><em><?php echo $products_name; ?></em></td></tr>
		</table>

<div class="padd3"><?php echo stripslashes($product_info['products_description']); ?>
<br><br style="line-height:11px"><span class="productSpecialPrice"><?=$products_price?></span></div>																	
																
																   </td></tr>
					 							  
															</table>
														</td>
													</tr>
												</table>
<?php
    }
?>
<?  tep_draw_heading_bottom_2();?>
				  <table cellspacing="0" cellpadding="0" border="0" align="center">
				   <tr><td height="5"></td></tr>
				   <tr><td height="1" class="bg_gg"><?php echo tep_draw_separator('spacer.gif', '1', '1'); ?></td></tr>
				   <tr><td height="5"></td></tr>
				  </table>	
<? tep_draw_heading_top_2();?>

<?php
    $products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'");
    $products_attributes = tep_db_fetch_array($products_attributes_query);
    if ($products_attributes['total'] > 0) {
?>
									<table cellpadding="0" cellspacing="0" class="box_width_cont product">
												<tr><td height="25" colspan="2"><strong><?php echo TEXT_PRODUCT_OPTIONS; ?></strong></td></tr>		 
<?php
      $products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name");
      while ($products_options_name = tep_db_fetch_array($products_options_name_query)) {
        $products_options_array = array();
        $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'");
        while ($products_options = tep_db_fetch_array($products_options_query)) {
          $products_options_array[] = array('id' => $products_options['products_options_values_id'], 'text' => $products_options['products_options_values_name']);
          if ($products_options['options_values_price'] != '0') {
            $products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';
          }
        }

        if (isset($cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']])) {
          $selected_attribute = $cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']];
        } else {
          $selected_attribute = false;
        }
?>
            <tr>
              <td class="main"><?php echo $products_options_name['products_options_name'] . ':'; ?></td>
              <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>
            </tr>
			<tr><td height="10" colspan="2"></td></tr>
<?php
      }
?>
          </table>
<?php
    }
?>

<?php
    $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
    $reviews = tep_db_fetch_array($reviews_query);
    if ($reviews['count'] > 0) {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo TEXT_CURRENT_REVIEWS . ' ' . $reviews['count']; ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    }

    if (tep_not_null($product_info['products_url'])) {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    }

    if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    } else {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    }
?>
		<!-- 
		<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
          <tr class="infoBoxContents"><td>
			 -->
			<table border="0" width="100%" cellspacing="0" cellpadding="0" class="product box_width_cont">
              <tr>
                <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?><?php echo tep_draw_separator('spacer.gif', '15', '1'); ?><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_add_to_cart1.gif', IMAGE_BUTTON_IN_CART); ?></td>
              </tr>
            </table><br style="line-height:1px;"><br style="line-height:10px;">
			<!-- 
			</td></tr>
        </table>
			 -->
<? tep_draw_heading_bottom_2();?>

<? tep_draw_heading_bottom_1(); ?>

<?php tep_draw_heading_bottom();?>	

<?php
    if ((USE_CACHE == 'true') && empty($SID)) {
      echo tep_cache_also_purchased(3600);
    } else {
      include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
    }
  }
?>
        </td>
      </tr>
    </table></form></td>
<!-- body_text_eof //-->
    <td class="col_right">
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
    </td>
  </tr>
</table>
<!-- body_eof //-->

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //--></body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>



Daar moet dus ook het "kastje" staan (witte achterkant, groene bovenbalk) die ik heb overschreven.

Weet jij welke dat moet zijn?
 
Laatst bewerkt door een moderator:
Kun je even highlighten wat precies relevant is hier? Het is nogal moeilijk te overzien voor iemand die niet bekend is met het pakket ;)
 
:D

Dat is het hem nou juist.

ik zou het niet weten.

Als ik de pagina bron bekijk van het geselecteerde (blauw gemaakte) stukje in Firefox kom
ik uit in het onderste gedeelte.

Ik maak dan het produkt aan de rechterkant blauw (dus dat wat fout staat.

Ergens staat een table fout.

In die table moet staan hoe die opgebouwd is.

Maar ik weet niet welke table.

:(
 
Code:
<?php
/*
  $Id: product_info.php,v 1.97 2003/07/01 14:34:54 hpdl Exp $

  osCommerce, Open Source E-Commerce Solutions
  [url]http://www.oscommerce.com[/url]

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

  require('includes/application_top.php');

  require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCT_INFO);

  $product_check_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
  $product_check = tep_db_fetch_array($product_check_query);
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script language="javascript"><!--
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
//--></script>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->

<!-- body //-->
<table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
    <td class="col_left">
<!-- left_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
    </td>
[B]<!-- body_text //-->
    <td width="100%" class="col_center"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
<?php
  if ($product_check['total'] < 1) {
?>
      <tr><td>
<? tep_draw_heading_top(); ?>

		<?php echo tep_draw_title_top();?>

					<?php echo TEXT_PRODUCT_NOT_FOUND;?>
			
		<?php echo tep_draw_title_bottom();?>
	
<? tep_draw_heading_top_1(); ?>				  
		

		
		<!-- 
		<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
          <tr class="infoBoxContents">
		  	<td> 
			-->
				<br style="line-height:1px;"><br style="line-height:12px;">
			
				<table border="0" width="100%" cellspacing="0" cellpadding="2">
				  <tr>
					<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
					<td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
					<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
				  </tr>
				</table>
				
			<!-- 	
			</td>
          </tr>
        </table>
		 -->
	
	
<? tep_draw_heading_bottom_1(); ?>

<? tep_draw_heading_bottom(); ?>

<?php
  } else {
    $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'");
    $product_info = tep_db_fetch_array($product_info_query);

    tep_db_query("update " . TABLE_PRODUCTS_DESCRIPTION . " set products_viewed = products_viewed+1 where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and language_id = '" . (int)$languages_id . "'");

    if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
      $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
    } else {
      $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
    }

    if (tep_not_null($product_info['products_model'])) {
      $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
    } else {
      $products_name = $product_info['products_name'];
    }
?>
      <tr>
        <td>
		
<? tep_draw_heading_top(); ?>

<?php echo tep_draw_title_top();?>

			<?php echo $breadcrumb->trail(' &raquo; ')?> 
			
<?php echo tep_draw_title_bottom();?>	
	
								
<? tep_draw_heading_top_1(); ?>	
<? tep_draw_heading_top_2(); ?>		
		

<?php
    if (tep_not_null($product_info['products_image'])) {
?>
												<table cellspacing="0" cellpadding="0" border="0" class="product">
													<tr><td>
															<table cellspacing="0" cellpadding="0" border="0">
																<tr><td height="100%">
		<table cellpadding="0" cellspacing="0" border="0" align="left" class="prod_info" style="border-right:13px solid #ffffff;border-left:0px solid #ffffff;">
			<tr><td class="pic" align="center"> <br style="line-height:1px;"><br style="line-height:9px;">
			
<?php /*  echo tep_draw_prod_top();  */?>

<script language="javascript"><!--
document.write('<?php echo '<a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, ' style="margin:0px 0px 0px 0px;"') . ''; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, ' style="margin:0px 0px 0px 0px;"') . ''; ?>
</noscript>

<?php /*  echo tep_draw_prod_bottom();  */?>

			</td></tr>
			<tr><td align="center">
<script language="javascript"><!--
document.write('<?php echo '<div><a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . TEXT_CLICK_TO_ENLARGE . '</a></div>'; ?>');
//--></script>
<noscript>
<?php echo '<div><a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank"><br style="line-height:7px">' . TEXT_CLICK_TO_ENLARGE . '</a></div>'; ?>
</noscript>
			</td></tr>
		</table>
		<table cellpadding="0" cellspacing="0" border="0">
			<tr><td style="vertical-align:middle; height:28px;"><em><?php echo $products_name; ?></em></td></tr>
		</table>

<div class="padd3"><?php echo stripslashes($product_info['products_description']); ?>
<br><br style="line-height:11px"><span class="productSpecialPrice"><?=$products_price?></span></div>																	
																
																   </td></tr>
					 							  
															</table>
														</td>
													</tr>
												</table>
<?php
    }
?>
<?  tep_draw_heading_bottom_2();?>
				  <table cellspacing="0" cellpadding="0" border="0" align="center">
				   <tr><td height="5"></td></tr>
				   <tr><td height="1" class="bg_gg"><?php echo tep_draw_separator('spacer.gif', '1', '1'); ?></td></tr>
				   <tr><td height="5"></td></tr>
				  </table>	
<? tep_draw_heading_top_2();?>

<?php
    $products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'");
    $products_attributes = tep_db_fetch_array($products_attributes_query);
    if ($products_attributes['total'] > 0) {
?>
									<table cellpadding="0" cellspacing="0" class="box_width_cont product">
												<tr><td height="25" colspan="2"><strong><?php echo TEXT_PRODUCT_OPTIONS; ?></strong></td></tr>		 
<?php
      $products_options_name_query = tep_db_query("select distinct popt.products_options_id, popt.products_options_name from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "' order by popt.products_options_name");
      while ($products_options_name = tep_db_fetch_array($products_options_name_query)) {
        $products_options_array = array();
        $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'");
        while ($products_options = tep_db_fetch_array($products_options_query)) {
          $products_options_array[] = array('id' => $products_options['products_options_values_id'], 'text' => $products_options['products_options_values_name']);
          if ($products_options['options_values_price'] != '0') {
            $products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';
          }
        }

        if (isset($cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']])) {
          $selected_attribute = $cart->contents[$HTTP_GET_VARS['products_id']]['attributes'][$products_options_name['products_options_id']];
        } else {
          $selected_attribute = false;
        }
?>
            <tr>
              <td class="main"><?php echo $products_options_name['products_options_name'] . ':'; ?></td>
              <td class="main"><?php echo tep_draw_pull_down_menu('id[' . $products_options_name['products_options_id'] . ']', $products_options_array, $selected_attribute); ?></td>
            </tr>
			<tr><td height="10" colspan="2"></td></tr>
<?php
      }
?>
          </table>
<?php
    }
?>

<?php
    $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'");
    $reviews = tep_db_fetch_array($reviews_query);
    if ($reviews['count'] > 0) {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo TEXT_CURRENT_REVIEWS . ' ' . $reviews['count']; ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    }

    if (tep_not_null($product_info['products_url'])) {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    }

    if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    } else {
?>
						<table cellpadding="0" cellspacing="0" class="product box_width_cont">
							<tr><td class="line_h"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td></tr>
							<tr><td height="17"></td></tr>
						</table>
<?php
    }
?>
		<!-- 
		<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
          <tr class="infoBoxContents"><td>
			 -->
			<table border="0" width="100%" cellspacing="0" cellpadding="0" class="product box_width_cont">
              <tr>
                <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?><?php echo tep_draw_separator('spacer.gif', '15', '1'); ?><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_add_to_cart1.gif', IMAGE_BUTTON_IN_CART); ?></td>
              </tr>
            </table><br style="line-height:1px;"><br style="line-height:10px;">
			<!-- 
			</td></tr>
        </table>
			 -->
<? tep_draw_heading_bottom_2();?>

<? tep_draw_heading_bottom_1(); ?>

<?php tep_draw_heading_bottom();?>	

<?php
    if ((USE_CACHE == 'true') && empty($SID)) {
      echo tep_cache_also_purchased(3600);
    } else {
      include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
    }
  }
?>
        </td>
      </tr>
    </table></form></td>
<!-- body_text_eof //-->
    <td class="col_right">
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
    </td>[/B]
  </tr>
</table>
<!-- body_eof //-->

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //--></body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Het vetgedrukte stuk in de code hierboven zou te laat geplaatst zijn. Maar er klopt iets niet, op dit stukje code staat er

Code:
<!-- left_navigation_eof //-->
    </td>
<!-- body_text //-->

maar als ik je pagina open staat er

Code:
<!-- left_navigation_eof //-->
    </table></td>
<!-- body_text //-->

Het lijkt er dus op dat hij gebruik maakt van een andere template ??
 
Misschien is het ook handig om je CSS te zien.
Ik denk namelijk als ik de code zo bekijk dat je hem buiten je content gooit.
Dit geeft die ook aan in Firebug. Als ik jou was zal ik ook eens alle opening en sluitingen na lopen. Ik heb nu niet genoeg tijd om dit allemaal na te lopen. Maar er word vast iets niet goed geopend of gesloten. Ik heb deze fout vaak mee gemaakt bij mij zelf ik vergat vaak een DIV te sluiten of wat tussen de " " te openen en te sluiten.

Hoop dat ik je hier wat mee op weg heb geholpen.

Groet KingShift
 
Ik weet het ook niet...:(

Daar baal ik echt van.

Ik probeer de 2 te vergelijken om er achter te komen waar die staat.

Nu heb ik wel een idee, maar nu nog hoe ik hem op de nieuwe pagina moet zetten.
 
Je maakt het jezelf ook niet echt makkelijk door al die tabellen (maar liefst 35 tabellen voor één pagina :shocked:) en gebrek aan uitlijning. Verder worden een aantal waardes niet geparsed (twee maal <td valign="top" width="BOX_WIDTH">).

Mijn advies: begin met fouten oplossen. klik hier en je ziet dat de validator 101 fouten en 29 warnings geeft. Er staan zoals verwacht ook een aantal fouten in voor diverse tabel elementen en de kans is groot dat het layout probleem hiermee te maken heeft.
 
Ben al iets dichter bij de oplassing.

Uitlijning is nu goed,

nu de groene balk nog en de "in aankoopmand" op de goede plaats.

ideetjes?
 
Alweer iets dichterbij....

Nu is alleen de beschrijving weg...:confused:

Groets
 
Hmmm...

Dit moet toch eigenlijk een eitje zijn voor alle programmeurs out there.

Nu is alles zoals ik dat eigenlijk wil hebben.

Nu mis is de beschrijving op de product_info.

Mis ik iets?
 
Een eitje? Die HTML is een kluwen van tabellen in tabellen in tabellen, nogal tijdrovend om dat helemaal door te pluizen.
 
Ja, die tabellen zijn heel lastig.

Wist ik natuurlijk ook niet toen ik de template installeerde.

:rolleyes:

Groets

maar eehh

Toch iemand een ideetje voor de verdwenen text? :o
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan