Jump to content
xt:Commerce Community Forum

Bestimmte Anzahl an Artikeln in Kategorie


Webmann

Recommended Posts

Hallo Leute,

was muss ich ändern wenn ich in einer Kategorie z.B. Filme nur 8 Produkte anzeigen lassen will und unten rechts steht ja dann Seiten: 1 und da möchte ich gerne noch ne 2. und 3. Seite haben das die Artikel nicht alle untereinander sind sonst wird die Seite zu lang und man muss zuviel scrollen ...

Hoffe ihr versteht was ich meine ...

2. Möchte ich gerne die gesamte Box_Warenkorb ohne Header also nur den weißen Hintergrund rot haben wo kann ich das ändern habe schon alle css Dateien durch er macht nur die Zeile rot wo der Preis steht ...

Danke für Eure Hilfe ...

Link to comment
Share on other sites

Und was gebe ich da dann ein?

Eben die Anzahl wie viele Produkte du in einer Seite aufgelistet haben willst...

Und habe schon in meinem Template nachgesehen nach allen css Dateien nix gefunden ...

Das Modul findest du unter module, dort findest du dann auch die entsprechenden Verweise auf die css...

Link to comment
Share on other sites

das habe ich bei Boxes gefunden

box_cart.htm

das müsste sie sein aber nichts mit css Verweis ....

{config_load file="$language/lang_$language.conf" section="boxes"}

{if $deny_cart neq 'true'}

{if $empty=='false'}

<div class="boxInfoRS" id="box_cart">

<h4><a href="{$LINK_CART}">{#heading_cart#}</a></h4>

<div class="boxInfoBodyRS">

{foreach name=aussen item=products_data from=$products}

<h1>{$products_data.QTY}x <a href="{$products_data.LINK}">{$products_data.NAME|truncate:25:"...":true}</a></h1>

{/foreach}

<div class="cartBoxLine">

{if $DISCOUNT}

{#text_discount#} {$DISCOUNT}

{/if}

<p class="boxTxtRight">{$UST}</p>

<p class="boxTxtRight"><strong>{#text_total#}{$TOTAL}</strong></p>

{if $SHIPPING_INFO}

<p class="boxTxtRight">{$SHIPPING_INFO}</p>

{/if}

</div>

</div>

</div>

{else}

<!-- cart has no content -->

<div class="boxInfoRS" id="box_cart">

<h4><a href="{$LINK_CART}">{#heading_cart#}</a></h4>

<div class="boxInfoBodyRS">

<p>{#text_empty_cart#}</p>

</div>

</div>

{/if}

{if $coupon_valid == 'true'}

<div class="boxInfoBodyRS">

<p>{#text_empty_cart#}</p>

<p><img src="{$tpl_path}img/img_gift.gif" alt="" />

{#cart_coupon#}

{$coupon_amount}</p>

</div>

{/if}

{/if}

Link to comment
Share on other sites

Habe was gefunden da war eine die hat im anderen Forum gefragt wie man das ändern kann

Antwort:

indem du ein CSS-Anweisung hinzufügst.

#col2_content #box_cart h4 {

...CSS zum Überschreiben / Hinzufügen von Anweisungen...

}

wie soll das gehen?

Link to comment
Share on other sites

Habe noch das bei Module.css gefunden

aber das ist denke ich ma wenn der Warenkorb in der Mitte angezeigt wird da ändert sich die Farbe

will aber das die Box oben rechts sich ändert

/* ### Warenkorb total ### */

.orderDetailsTable {

border-left:1px solid #9F9F9F;

border-right:1px solid #9F9F9F;

border-top:1px solid #9F9F9F;

}

.orderDetailsTable td , .orderDetailsTable tfoot td , .orderDetailsTable thead th{

margin: 0;

border: 0;

padding: 5px 10px;

color: #333;

border-bottom:1px solid #9F9F9F;

}

.orderDetailsTable thead th {

color:#000;

background:#CFCFCF;

}

.orderDetailsTable tfoot td {

color:#000;

background:#CFCFCF;

}

.orderDetailsTable td.subTotal {

text-align: right;

}

/* ### Hintergrundfarbe Warenkorb Zeilen ### */

tbody tr.prodRow1 {

background:#FFF;

}

tbody tr.prodRow2 {

background:#EFEFEF;

}

.productAttributes tbody tr.attribute {

background:transparent;

}

.orderDetailsTable tbody td.singlePrice, tbody td.totalPrice { font-size:0.8em; vertical-align: top; }

.orderDetailsTable tbody td.delete { padding:0; vertical-align:middle; line-height:20px; }

.orderDetailsTable tbody td.delete input { margin-left:35px; }

#col3_content .quantity input[type="text"] {

width:35px;

margin:0;

padding:0;

}

Link to comment
Share on other sites

Archived

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

×
  • Create New...