Jump to content
xt:Commerce Community Forum

Anzeige extrem schief


Recommended Posts

Hallo,

nachdem ich das alte Problem lösen konnte habe ich nun wieder ein neues.

Problemzone :

http://www.elektro-küchentechnik.de/

Erstmal sieht das völlig ungleichmäßig aus. Wenn ich jetzt aber 6 anstatt 4 Artikel anzeigen lassen will dann schiesst der Text über den rechten Rand hinaus. Bei 4 Artikeln ist es ( einigermassen ) grade.

An den Bildern liegt es nicht. Leider habe ich aber auch gar keine Vorstellung was es sonst sein könnte. Wenn ich Code Posten soll bitte noch aus welcher Datei bin noch extrem neu auf dem Gebiet.

Vielen Dank für eure Hilfe.

Mfg

Link to comment
Share on other sites

okay ich setzte mich mal ran und probiere das mit der border

okay damit sieht man sehr gut das anstatt 6 zellen nur 4 aufgemacht werden. wie kann ich diesen fehler beheben? hier der code der default new products


{config_load file="$language/lang_$language.conf" section="new_products"} 


<table class="box_border" width="100%" border="0" cellpadding="1" cellspacing="0">

  <tr>

    <td class="contentsTopics">{#heading_text#}</td>

  </tr>

</table>

<table width="100%" border="2" cellspacing="5" cellpadding="0">

  <tr>

  {foreach name=aussen item=module_data from=$module_content}

  {php} $col++; 

  {/php}

    <td class="main">

        <table width="100%" border="0" cellpadding="0" cellspacing="4">

          <tr> 

            <td rowspan="2" >{if $module_data.PRODUCTS_IMAGE}<a href="{$module_data.PRODUCTS_LINK}"><img style="border: 1px solid #278CE5;" src="{$module_data.PRODUCTS_IMAGE}" alt="{$module_data.PRODUCTS_NAME}" /></a>{/if}</td>

            <td class="main"><strong><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></strong></td>

          </tr>

          <tr> 

            <td  class="main">{$module_data.PRODUCTS_DESCRIPTION|truncate:100:"...":true}<a href="{$module_data.PRODUCTS_LINK}"><strong>{#text_details#}</strong></a><br />

						<strong>{$module_data.PRODUCTS_PRICE}</strong><br /> 

			{if $module_data.PRODUCTS_VPE}{$module_data.PRODUCTS_VPE}<br />{/if}

			{$module_data.PRODUCTS_TAX_INFO}{$module_data.PRODUCTS_SHIPPING_LINK}<br />

	      {$module_data.PRODUCTS_BUTTON_BUY_NOW}<br />

            </td>

          </tr>

        </table>

</td>

  {php} 

  if ($col>=2) {

  $col=0;

  echo '</tr><tr>';

  }

  {/php}

  {/foreach}  

  </tr>

</table>

Link to comment
Share on other sites

Archived

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

×
  • Create New...