#1 (permalink)  
Alt 09.12.2004, 14:45
 
Registriert seit: 08.12.2004
Beiträge: 5
Standard

Hallo

Ich bin neu hier und muss sagen dass der Shop Spitze ist, selbst ohne Programmierkenntnisse kommt man sehr weit.

Nur steh ich jetzt vor meinem ersten Problem:
Wie mache ich es das der Unterkategorienname unter einem Bild steht nicht rechts davon?

Danke schon mal im Voraus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 09.12.2004, 16:13
Benutzerbild von polkhigh33
xt:C Supportmitarbeiter
 
Registriert seit: 26.10.2003
Ort: Hamburg
Beiträge: 6.862
Standard

templates/deintemplate/module/categorie_listing/categorie_listing.html
Code:
{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if}
einfach an die gew?nschte stelle verschieben.
__________________
dieser beitrag ist ohne gewähr und stellt nur meine meinung und keinesfalls eine rechtsberatung dar. im zweifelsfalle ist er ironisch gemeint.
.:netzdesign33.de:. | .:blog33.de:.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 09.12.2004, 18:31
 
Registriert seit: 08.12.2004
Beiträge: 5
Standard

Hallo,

ich versuch das jetzt schon seit 2 Stunden aber irgendwie geht das nicht.
Entweder zeigt es den namen nicht mehr an oder es geht gar nichts mehr.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 09.12.2004, 18:53
Benutzerbild von polkhigh33
xt:C Supportmitarbeiter
 
Registriert seit: 26.10.2003
Ort: Hamburg
Beiträge: 6.862
Standard

wysiwyg modus abschalten und im quelltext arbeiten, wahrscheinlich ziehst du immer nur das img mittels drag&drop hin und her. falls du das original tpl verwendest solltest du recht weit oben folgendes finden:
Code:
<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>
?ndern in
Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr valign="top"> 
     <td>{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if} <br>
      <font face="Verdana, Arial, Helvetica, sans-serif" color="#666666" size="4"><strong>{$CATEGORIES_NAME}</font></strong>
     </td>
    </tr>
   </table>
__________________
dieser beitrag ist ohne gewähr und stellt nur meine meinung und keinesfalls eine rechtsberatung dar. im zweifelsfalle ist er ironisch gemeint.
.:netzdesign33.de:. | .:blog33.de:.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 09.12.2004, 19:17
 
Registriert seit: 08.12.2004
Beiträge: 5
Standard

Ich bin am verzweifeln so sieht der code jetzt aus:

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 align="right">{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if}</td>
   <td class="category">{$CATEGORIES_NAME}</td>
  </tr>
 	</table>
{if $CATEGORIES_DESCRIPTION}
<div class="infobox">{$CATEGORIES_DESCRIPTION}</div> 
<br>
<br>

{/if}
{if $module_content !=''} <div class="subcategory">{#heading_more_categories#}</div> 
<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="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>
aber was mach ich falsch? :wall:
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 09.12.2004, 19:23
 
Registriert seit: 08.12.2004
Beiträge: 5
Standard

So sieht es im moment aus:

http://www.mwa-audio.de/index.php?cPath=6
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 09.12.2004, 21:09
Benutzerbild von polkhigh33
xt:C Supportmitarbeiter
 
Registriert seit: 26.10.2003
Ort: Hamburg
Beiträge: 6.862
Standard

so besser ?
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 align="right">{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if}</td>
   <td class="category">{$CATEGORIES_NAME}</td>
  </tr>
 </table>
{if $CATEGORIES_DESCRIPTION}
<div class="infobox">{$CATEGORIES_DESCRIPTION}</div> 
<br>
<br>

{/if}
{if $module_content !=''} <div class="subcategory">{#heading_more_categories#}</div> 
<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="4">
   <tr> 
    <td class="main"><strong><a href="{$module_data.CATEGORIES_LINK}">&raquo;{$module_data.CATEGORIES_NAME}</a></strong><br>
     {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">{$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>
__________________
dieser beitrag ist ohne gewähr und stellt nur meine meinung und keinesfalls eine rechtsberatung dar. im zweifelsfalle ist er ironisch gemeint.
.:netzdesign33.de:. | .:blog33.de:.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #8 (permalink)  
Alt 10.12.2004, 21:42
 
Registriert seit: 08.12.2004
Beiträge: 5
Standard

Danke polkhigh33 f?r deine Hilfe

Hat wunderbar geklappt
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #9 (permalink)  
Alt 11.12.2004, 16:04
 
Registriert seit: 06.10.2004
Beiträge: 3
Standard

Kannst auch gleich Dein Impressum korrigieren, "?bernehmen" schreibt man mit "h".

Gruss M.Walter
jumpbase mm
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
bild, unterkategorienname

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 03:39 Uhr.

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

xt:Commerce is a SafeCharge brand