#1 (permalink)  
Alt 20.08.2005, 07:05
Benutzerbild von Shark Master  
Registriert seit: 25.05.2004
Beiträge: 84
Standard

Hi,
in meinen Shop gibt es 7 Katogorien mit Bilder.
Wenn ich die Katogorien mit Bilder und Text angebe.
Wird es zu Gross.
Also es geht in die Breite.
Und es sind dann 3 Katogorien in einer reiche.

Meine frage ist ob mir jemanden helfen kann den Templates
/module/categorie_listing/categorie_listing.html
zu bearbeiten.
Den ich habe keine so gutes HTML kenntniss
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 20.08.2005, 12:52
nom nom ist offline
 
Registriert seit: 19.02.2004
Beiträge: 596
Standard

Die Ziffer gibt die Anzahl der Kategorien an, die nebeneinander angezeigt werden.
Code:
($col>=3)
Was willst du genau haben?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 20.08.2005, 19:29
Benutzerbild von Shark Master  
Registriert seit: 25.05.2004
Beiträge: 84
Standard

ja genau und wie mache ich es das die ?berschrieft unter dem Bild ist
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 20.08.2005, 20:18
nom nom ist offline
 
Registriert seit: 19.02.2004
Beiträge: 596
Standard

poste den Quellcode.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 20.08.2005, 20:57
Benutzerbild von Shark Master  
Registriert seit: 25.05.2004
Beiträge: 84
Standard

hier
Code:
{config_load file="$language/lang_$language.conf" section="categorie_listing"}
<table width="100%" border="0" cellpadding="0" cellspacing="0">
 <tr valign="top"> 
  <td class="main"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr valign="top"> 
     <td><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#666666" size="4">{$CATEGORIES_NAME}</font></strong> 
      </font></td>
     <td align="right">{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if}</td>
    </tr>
   </table>{if $CATEGORIES_DESCRIPTION}
   {$CATEGORIES_DESCRIPTION} 
   <br>
   <br>
  {/if}
   {if $module_content !=''} <strong>{#heading_more_categories#}</strong> 
   <br>
   <table style="border-top: 2px solid; border-color: #d4d4d4;" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr> {foreach name=aussen item=module_data from=$module_content} 
 {php} 
     $col++; 
 {/php} 
     <td class="main"><div align="left"> 
       <table width="100%" border="0" cellpadding="0" cellspacing="4">
        <tr> 
         <td width="1" rowspan="2" >{if $module_data.CATEGORIES_IMAGE}<a href="{$module_data.CATEGORIES_LINK}"><img src="{$module_data.CATEGORIES_IMAGE}" border="0"></a>{/if}</td>
         <td class="main"><strong><a href="{$module_data.CATEGORIES_LINK}">{$module_data.CATEGORIES_NAME}</a></strong></td>
        </tr>
        <tr> 
         <td class="main">{$module_data.CATEGORIES_DESCRIPTION}</td>
        </tr>
       </table>
      </div></td>
     {php} 
  if ($col>=2) { 
  $col=0; 
  echo '</tr><tr>';
   } 
  {/php} 
  {/foreach} </tr>
   </table> 
    {/if} <br>
  </td>
  <td class="main" nowrap width="1%"> </td>
 </tr>
</table>
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
  <td>{$MODULE_new_products}</td>
 </tr>
</table>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 21.08.2005, 21:21
 
Registriert seit: 10.01.2004
Beiträge: 8
Standard

...
<td align="right">
{if $CATEGORIES_IMAGE}[img]{$CATEGORIES_IMAGE}[/img]{/if}


{if $CATEGORIES_DESCRIPTION} {$CATEGORIES_DESCRIPTION}
</td>
</tr>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 22.08.2005, 05:12
Benutzerbild von Shark Master  
Registriert seit: 25.05.2004
Beiträge: 84
Standard

Also ich habe es eingebaut.
Aber es geht nicht.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #8 (permalink)  
Alt 22.08.2005, 05:49
Benutzerbild von dukie6666
VEYTON Service Partner
 
Registriert seit: 26.01.2004
Ort: Nueva Colombia/Paraguay
Beiträge: 1.855
Standard

das ist doch einfachstes html, etwas grundlagen solltes du dir das schon aneignen, wenn dein template was werden soll.

Code:
{config_load file="$language/lang_$language.conf" section="categorie_listing"}
<table width="100%" border="0" cellpadding="0" cellspacing="0">
 <tr valign="top"> 
  <td class="main"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr valign="top"> 
     <td><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#666666" size="4">{$CATEGORIES_NAME}</font></strong> 
      </font></td>
     <td align="right">{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if}</td>
    </tr>
   </table>{if $CATEGORIES_DESCRIPTION}
   {$CATEGORIES_DESCRIPTION} 
   <br>
   <br>
 {/if}
   {if $module_content !=''} <strong>{#heading_more_categories#}</strong> 
   <br>
   <table style="border-top: 2px solid; border-color: #d4d4d4;" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr> {foreach name=aussen item=module_data from=$module_content} 
 {php} 
     $col++; 
 {/php} 
     <td class="main"><div align="left"> 
       <table width="100%" border="0" cellpadding="0" cellspacing="4">
        <tr> 
         <td class="main" align="center">{if $module_data.CATEGORIES_IMAGE}<a href="{$module_data.CATEGORIES_LINK}"><img src="{$module_data.CATEGORIES_IMAGE}" border="0"></a>{/if}</td>
        </tr>
        <tr> 
         <td class="main" align="center"><strong><a href="{$module_data.CATEGORIES_LINK}">{$module_data.CATEGORIES_NAME}</a></strong></td>
        </tr>
        <tr> 
         <td class="main" align="center">{$module_data.CATEGORIES_DESCRIPTION}</td>
        </tr>
       </table>
      </div></td>
     {php} 
  if ($col>=2) { 
  $col=0; 
  echo '</tr><tr>';
  } 
  {/php} 
 {/foreach} </tr>
   </table> 
   {/if} <br>
  </td>
  <td class="main" nowrap width="1%"> </td>
 </tr>
</table>
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
  <td>{$MODULE_new_products}</td>
 </tr>
</table>
__________________
Grüße Oliver


Zertifizierter xt:Commerce VEYTON Reseller & Service Partner
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #9 (permalink)  
Alt 22.08.2005, 21:21
Benutzerbild von Shark Master  
Registriert seit: 25.05.2004
Beiträge: 84
Standard

Ok,
Danke euch
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
brauche, hilfe

Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are aus
Pingbacks are aus
Refbacks are aus



Alle Zeitangaben in WEZ +1. Es ist jetzt 08:41 Uhr.

Copyright © 2011 xt:Commerce GmbH / xt:Commerce International Ltd. - All Rights Reserved

xt:Commerce is a SafeCharge brand