Jump to content
xt:Commerce Community Forum

Kategoriebilder


Recommended Posts

Nabend,

leider taucht gerade ein kleines Problem in meinem Shop auf.

Nach dem Hinzufügen von Kategoriebildern spiel die Anzeige im Shop etwas verrückt. Das Bild hat in diesem Fall 70x70 pixel.

Zum bessern Verständnis hab ich mal 2 Screenshots gemacht...

Vorher, ohne Kategoriebild:

http://img222.imageshack.us/img222/5732/cat1yo7.jpg

Und nachdem Hinzufügen:

http://img207.imageshack.us/img207/2671/cat2yk8.jpg

Hat jemand eine Idee woran das liegen könnte?

Link to comment
Share on other sites

hm, ok. Dann werd ich da mal nachschaun.

Was mich jetzt aber ein wenig wundert: Warum werden dann die vormals einfügten Kategoriebilder korrekt angezeigt und das passiert jetzt nur wenn ich versuche bei weiteren Kategorien Bilder zu hinterlegen.

Nutzen die denn nicht alle die gleichen Tabellen im Template?

Link to comment
Share on other sites

Das hab ich aber nie getan, dort ist nur das eine Kategorietemplate drin das ich schon immer benutzte...

Hi, und welches Template ist das?

Das sieht nach einem Fehler im Template aus, z.B großer Abstand um das Bild (padding oder margin).

Hilfreich ist die Firefox Erweiterung Web-Developer, damit kannst Du Dir die CSS-Parameter der Elemente anzeigen lassen.

Link to comment
Share on other sites

Also auswählen kann ich da nur "categorie_listing.html"

Die sieht so aus:

{config_load file="$language/lang_$language.conf" section="categorie_listing"}
<h1>{$CATEGORIES_NAME}</h1>
<!-- <td align="center">{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_IMAGE}" />{/if}</td> -->
{if $CATEGORIES_DESCRIPTION}<p>{$CATEGORIES_DESCRIPTION}</p>{/if}
{$MODULE_new_products}
{if $module_content !=''}
<h3>{#heading_more_categories#}</h3>
<p>
<table class="categoryListing">
{foreach name=aussen item=module_data from=$module_content}
<tr>
{if $module_data.CATEGORIES_IMAGE}
<td class="categoryImage"><a href="{$module_data.CATEGORIES_LINK}"><img src="{$module_data.CATEGORIES_IMAGE}" alt="{$module_data.CATEGORIES_NAME}"/></a></td>
{/if}
<td class="categoryLabel"><a href="{$module_data.CATEGORIES_LINK}">{$module_data.CATEGORIES_NAME}</a>
{if $module_data.CATEGORIES_DESCRIPTION!=''}<br />{$module_data.CATEGORIES_DESCRIPTION}{/if}</td>
</tr>
<tr>
<td colspan="2"><div class="hrproductpreview"> </div></td>
</tr>
{/foreach}
</table>
</p>
{/if}[/PHP]

Das sieht nach einem Fehler im Template aus, z.B großer Abstand um das Bild (padding oder margin).

Hilfreich ist die Firefox Erweiterung Web-Developer, damit kannst Du Dir die CSS-Parameter der Elemente anzeigen lassen.

Hab ich mal gemacht, hat leider nichts zu Tage gebracht.

[PHP]table.categoryListing td.categoryImage (line 116)
{
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 0px;
}[/PHP]

Wie ich schon sagte betrifft es ja auch nur neue Kategoriebilder, die alten werden immernoch richtig angezeigt.

Link to comment
Share on other sites

Das ist was falsch. Da kann eine total kaputte Tabellenstruktur herauskommen.

    {if $module_data.CATEGORIES_IMAGE} 
<td class="categoryImage"><a href="{$module_data.CATEGORIES_LINK}"><img src="{$module_data.CATEGORIES_IMAGE}" alt="{$module_data.CATEGORIES_NAME}"/></a></td>
{/if} [/php]

[color=#000000][color=#007700]

Versuch mal so.

[/color][/color]

[php] <td class="categoryImage">
{if $module_data.CATEGORIES_IMAGE}
<a href="{$module_data.CATEGORIES_LINK}"><img src="{$module_data.CATEGORIES_IMAGE}" alt="{$module_data.CATEGORIES_NAME}"/></a>
{/if}
 </td>

mfg

Link to comment
Share on other sites

Archived

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

×
  • Create New...