#1 (permalink)  
Alt 29.06.2004, 23:29
 
Registriert seit: 29.06.2004
Beiträge: 4
Standard

Hallo Weis einer wo ich die bilder kleiner machen kann das er mir da nicht immer die bilder so verziehen tut ??

http://web19.p15122287.pureserver.info/ind...dex.php?cPath=1

Wo kann mann das ein stellen das er nur 3 Bilder pro zeile macht
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 29.06.2004, 23:51
HHGAG
Gast
 
Beiträge: n/a
Standard

/templates/AKTUELLESTPL/module/categories_listing/categories_listing.html

ca. Zeile 34:

Code:
     {php} 
  if ($col>=4) { 
  $col=0; 
  echo '</tr><tr>';
   } 
  {/php}
($col>=4)

die 4 in die gew?nschte Spaltenanzahl ?ndern.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 30.06.2004, 00:10
 
Registriert seit: 29.06.2004
Beiträge: 4
Standard

Danke f?r die schnelle antwort wie kann ich die ?berschriebt bei der Katekorie unter das bild machen ?

Z.B cpu unter das bild

derDiscount: http://web19.p15122287.pureserver.info/ind...dex.php?cPath=1
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 30.06.2004, 00:19
HHGAG
Gast
 
Beiträge: n/a
Standard

Kannst es auch in der gleichen Datei ?ndern.

F?r alles in Bezug auf Template findest Du hier:

Dreamweaver
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 30.06.2004, 00:25
 
Registriert seit: 29.06.2004
Beiträge: 4
Standard

Kannst du mir die Templats bitte mal ?ndern bzw. mir erkl?ren wo ich was ?ndere ??

// Kopie

{config_load file="$language/lang_$language.conf" section="categorie_listing"}
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><font color="#666666" size="4">{$CATEGORIES_NAME}</font>
</font></td>
<td align="right">{if $CATEGORIES_IMAGE}[img]{$CATEGORIES_IMAGE}[/img]{/if}</td>
</tr>
</table>{if $CATEGORIES_DESCRIPTION}
<font size="1" face="Verdana, Arial, Helvetica, sans-serif"> {$CATEGORIES_DESCRIPTION}</font>




{/if}
{if $module_content !=''} <font color="#000000" size="2">{#heading_more_categories#}</font>


<table 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="3">
<tr>
<td width="1" rowspan="2" >{if $module_data.CATEGORIES_IMAGE}[img]{$module_data.CATEGORIES_IMAGE}[/img]{/if}</td>
<td class="main">{$module_data.CATEGORIES_NAME}</td>
</tr>
<tr>
<td class="main">{$module_data.CATEGORIES_DESCRIPTION} </td>
</tr>
</table>
</div></td>
{php}
if ($col>=3) {
$col=0;
echo '</tr><tr>';
}
{/php}
{/foreach} </tr>
</table>
{/if}

</td>
<td class="main" nowrap width="1%"> </td>
</tr>
</table>


<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 30.06.2004, 00:36
HHGAG
Gast
 
Beiträge: n/a
Standard

Code:
{config_load file="$language/lang_$language.conf" section="categorie_listing"}
<table width="100%" border="0" cellpadding="0" cellspacing="0">
 <tr valign="top"> 
 <td> <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}
 <font size="1" face="Verdana, Arial, Helvetica, sans-serif"> {$CATEGORIES_DESCRIPTION}</font> 
 <br>
 <br>
 {/if}
 {if $module_content !=''} <strong><font color="#000000" size="2">{#heading_more_categories#}</font></strong> 
 <br>
 <table 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="3">
 <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>=3) { 
 $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>
M?sste so reichen, alles andere bitte selbst machen, HTML ist nun mal Vorrausetzung, dass sollte man schon k?nnen, oder zumindestens Dreamweaver bedienen k?nnen. :z:
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
bild, grsse

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 00:00 Uhr.

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

xt:Commerce is a SafeCharge brand