#1 (permalink)  
Alt 05.12.2006, 14:22
Neuer Benutzer
 
Registriert seit: 05.12.2006
Beiträge: 22
Standard Kleine Probleme

Bastel gerade an dem Shop und habe ein paar Schwierigkeiten.
Der Shop hat einen kleinen Abstand zum oberen und linken Browserfenster.
Wo finde ich die passenden Abstandswerte ??

Das Logo besteht aus einem Bild und ein paar Linien etc. die immer bis zum
rechten Fenster gehen sollen. Das Bild muss aber fix bleiben. Wie lös ich das
am besten ??

danke schonmal
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 05.12.2006, 16:52
xt:Commerce Support Kunde
 
Registriert seit: 16.07.2004
Beiträge: 871
Standard

Sorry wenn ich es so direkt sage, aber ohne gefestigte HTML-Kenntnisse wirst Du die Templates nicht anpassen können. Da kommen noch eine Menge Probleme auf Dich zu.

Nicht böse gemeint!

Ohne Quellcode können wir nur raten!
Abstände kann man per CSS oder HTML einstellen.

Gruß
Walter
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 05.12.2006, 18:01
Neuer Benutzer
 
Registriert seit: 05.12.2006
Beiträge: 22
Standard

Habe die stylesheet.css und index.html aus templates\xtc4\ abgesucht aber die Abständer sind alle auf "0".

Es geht ja um den XT Onlineshop.

Probleme gibt es immer. Die sind aber lösbar. ;-) Sind nur ein paar Kleinigkeiten die mir noch fehlen. Hab alles soweit fertig.

index.html
Zitat:
{config_load file="$language/lang_$language.conf" section="index"}

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="{$tpl_path}img/top_logo.jpg" alt="{$store_name}" /></td>
</tr>
<tr>
<td style="border-top: 1px solid; border-bottom: 1px solid; border-color: #C5C5C5;"><table width="100%" border="0" cellpadding="2" cellspacing="0">
<tr>
<td class="main">{$navtrail}</td>
<td align="right" class="main">{if $account}{php} if (isset($_SESSION['customer_id'])) { {/php}<a href="{$logoff}">{#link_logoff#}</a> | {php} } {/php}{/if}{if $account}<a href="{$account}">{#link_account#}</a> | {/if}<a href="{$cart}">{#link_cart#}</a> | <a href="{$checkout}">{#link_checkout#}</a></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="navLeft" valign="top"><table width="184" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>{$box_CATEGORIES}{$box_ADD_QUICKIE}{$box_CONTE NT}{$box_INFORMATION}{$box_LAST_VIEWED}{$box_REVIE WS}{$box_SEARCH}{$box_SPECIALS}{$box_WHATSNEW}</td>
</tr>
</table>&nbsp;</td>
<td valign="top"><table width="100%" border="0" cellspacing="4" cellpadding="0">
<tr>
<td><table width="98%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="main">{$main_content}</td>
</tr>
</table></td>
</tr>
</table></td>
<td valign="top" class="navRight"><table width="184" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>{$box_CART}{$box_LOGIN}{$box_ADMIN}{$box_NEWSL ETTER}{$box_BESTSELLERS}{$box_INFOBOX} {$box_CURRENCIES} {$box_LANGUAGES}{$box_MANUFACTURERS_INFO}{$box_MAN UFACTURERS} </td>
</tr>
</table>&nbsp;</td>
</tr>
<tr>
<td colspan="3" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="border-top: 4px solid; border-top: 4px solid; border-color: #C5C5C5;">&nbsp;</td>
<td style="border-top: 4px solid; border-top: 4px solid; border-color: #666666;">&nbsp;</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
{if $BANNER}
<table width="100%" border="0" cellspacing="4" cellpadding="0">
<tr>
<td align="center">{$BANNER}</td>
</tr>
</table>
{/if}

Geändert von rswtal (06.12.2006 um 01:15 Uhr)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 06.12.2006, 03:06
Neuer Benutzer
 
Registriert seit: 05.12.2006
Beiträge: 22
Standard

Das erste Problem hab ich gelöst bekommen. War ja einfach aber ich dachte dass wäre irgendwo verschachtelt gewesen.

<html>
<body leftmargin="0" topmargin="0">
</body>
</html>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 06.12.2006, 08:38
xt:Commerce Support Kunde
 
Registriert seit: 16.07.2004
Beiträge: 871
Standard

Siehst Du, und dies macht man normalerweise in der CSS Datei mit
body{margin:0px; padding:0px;}

Gruß
Walter
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 06.12.2006, 21:34
Neuer Benutzer
 
Registriert seit: 05.12.2006
Beiträge: 22
Standard

Ah jetzt weisst du es auf einmal. Hättest dass direkt posten können.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 07.12.2006, 10:02
xt:Commerce Support Kunde
 
Registriert seit: 16.07.2004
Beiträge: 871
Standard

Ich halte nichts davon hellseherisch herumzuraten und dann was zu posten. Ich wußte ja nicht mal welche Abstände Du genau meinst.

Mein Beitrag sollte auch nicht rechthaberisch verstanden werden. Wenn ich damit provoziert habe bitte ich um Entschuldigung!

Gruß
Walter
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
kleine, probleme

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 12:23 Uhr.

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

xt:Commerce is a SafeCharge brand