Jump to content
xt:Commerce Community Forum

Linkprobleme Mit C-list Modul


hektor1

Recommended Posts

Hallo,

ich habe mir das C-List Modul für die Anzeige der Kategorien auf der Startseite installiert.

Funktioniert soweit auch, aber leider kann man die Links zu den Kategorien nur im

Mozilla Firefox öffnen und nicht mit IE.

Ich poste mal die categories_list.html, vielleicht hat ja jemand einen Tip.

LG Danke

{config_load file="$language/lang_$language.conf" section="boxes"}
<br />
<table border="0" cellpadding="0" cellpadding="0" class="categories_list">
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">

{php}
$row=0;
{/php}

{foreach name=aussen item=module_data from=$module_content}
{php}
if($row==0) {
{/php}
<tr>
{php}
}
{/php}
<td width="45%">
<a class="cat_listing_cat_name" href="{$module_data.CATEGORY_LINK}">
<table width="100%" border="0" cellspacing="0" cellpadding="3" height="100">
<tr>
<td>{$module_data.CATEGORY_IMAGE}</td>
<td valign="top">{$module_data.CATEGORY_NAME}<br><br>{$module_data.CATEGORY_DESCRIPTION}</td>
</tr>
</table>
</a>
</td>
{php}
if($row==0) {
// this cell is used as a "separator"; set tables borders to 1 to chceck it;)
{/php}
<td width="10%"></td>
{php}
}

$row++;



if($row>=2) {
{/php}
</tr>
{php}
unset($row);
}
{/php}


{/foreach}
{php}
// it will provide correct table structure when you have odd nbr of categories
if($row>0) {
while($row!=0) {
{/php}
<td></td><td></td>
{php}
$row--;
}
{/php}
</tr>
{php}
}
{/php}
</table>
</td></tr>
<br />
[/HTML]

Link to comment
Share on other sites

Ich habe, da mir dieser Tabellen Link nicht gefallen hat, den mittleren Block abgeändert. Jetzt tritt dieser IE Fehler nicht mehr auf: (zu sehen bei dahle Aktenvernichter)

ca. Zeile 19

...

{/php}

<td width="45%">

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

<tr>

<td>

<a class="cat_listing_cat_name" href="{$module_data.CATEGORY_LINK}">{$module_data.CATEGORY_IMAGE}</a>

</td>

<td valign="top">

<h2><a class="cat_listing_cat_name" href="{$module_data.CATEGORY_LINK}"> <b>{$module_data.CATEGORY_NAME}</b></a></h2><br />

{$module_data.CATEGORY_DESCRIPTION}

</td>

</tr>

</table>

</td>

{php}

...

Link to comment
Share on other sites

Archived

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

×
  • Create New...