Filter-Shop24 Posted October 23, 2008 Report Share Posted October 23, 2008 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 More sharing options...
hubbabubba Posted October 24, 2008 Report Share Posted October 24, 2008 Ne verunglückte Tabelle im Template. Überprüfe das html und die Konsitenz der Tabelle. mfg Link to comment Share on other sites More sharing options...
EG@YHD Posted October 24, 2008 Report Share Posted October 24, 2008 Sollte nochmal das Tabellensystem überprüft werden. Hab bisher immer schlechte Erfahrungen mit der Darstellung der Tabellen gemacht, weil viele Browser unterschiedlich interpretieren. Mit div's passiert das nicht... Link to comment Share on other sites More sharing options...
Filter-Shop24 Posted October 24, 2008 Author Report Share Posted October 24, 2008 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 More sharing options...
hubbabubba Posted October 24, 2008 Report Share Posted October 24, 2008 Nicht zwangsläufig. Es besteht die Möglichkeit mehrere Kategorietemplates anzulegen und in der Administration für jede Kategorie ein eigenes auszuwählen (Dropdown). mfg Link to comment Share on other sites More sharing options...
Filter-Shop24 Posted October 24, 2008 Author Report Share Posted October 24, 2008 Das hab ich aber nie getan, dort ist nur das eine Kategorietemplate drin das ich schon immer benutzte... Link to comment Share on other sites More sharing options...
tglaser Posted October 24, 2008 Report Share Posted October 24, 2008 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 More sharing options...
Filter-Shop24 Posted October 25, 2008 Author Report Share Posted October 25, 2008 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 More sharing options...
hubbabubba Posted October 25, 2008 Report Share Posted October 25, 2008 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 More sharing options...
Filter-Shop24 Posted October 25, 2008 Author Report Share Posted October 25, 2008 Scheint zu funktionieren! Vielen, vielen Dank!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.