Liveshopping Box in der Listenansicht

Guten Tag. Es handelt sich um die Gestaltung der Liveshopping (Plugin) Artikel Box in der Listenansicht. Links sieht man die normale Artikel Box, rechts die Liveshopping Artikel Box. Ich möchte in der Liveshopping Artikel Box das Bild links und den Text rechts positionieren. Das Problem ist das das Liveshopping.tpl die normale Artikel Box nur erweitert, sodass dieses Bild per CSS nicht erfasst werden kann. Normale Box: [code]


[/code] Liveshopping Box: [code]


[/code] Normales Box Template: [code]{extends file=‘parent:frontend/listing/box_article.tpl’} {* New *} {block name=‘frontend_listing_box_article_new’} {if $sArticle.newArticle}
{se name=‘ListingBoxNew’}{/se}
{/if} {/block} {* Description *} {block name=‘frontend_listing_box_article_description’} {/block} {* Unit price *} {block name=‘frontend_listing_box_article_unit’} {if $sArticle.purchaseunit}
{if $sArticle.purchaseunit && $sArticle.purchaseunit != 0}

{se name=“ListingBoxArticleContent”}{/se}: {$sArticle.purchaseunit} {$sArticle.sUnit.description} {/if} {if $sArticle.purchaseunit != $sArticle.referenceunit} {if $sArticle.referenceunit} ({$sArticle.referenceprice|currency} {s name=“Star” namespace=“frontend/listing/box_article”}{/s} / {$sArticle.referenceunit} {$sArticle.sUnit.description}) {/if}

{/if}
{/if} {/block} {* Article Price *} {block name=‘frontend_listing_box_article_price’}

{if $sArticle.pseudoprice} {s name=“reducedPrice”}Statt: {/s}{$sArticle.pseudoprice|currency} {s name=“Star”}*{/s} {/if} {if $sArticle.priceStartingFrom && !$sArticle.liveshoppingData}{s name=‘ListingBoxArticleStartsAt’}{/s} {/if}{$sArticle.price|currency} {s name=“Star”}*{/s}

{/block} {block name=‘frontend_listing_box_article_actions’}
{s name=‘ListingBoxLinkDetails’}{/s}

{block name=‘frontend_detail_actions_notepad’} [{se name=“DetailLinkNotepad”}{/se}]({url controller=‘note’ action=‘add’ ordernumber=$sArticle.ordernumber} “{s name=‘DetailLinkNotepad’}{/s}”) {/block}

{block name=‘frontend_listing_box_article_actions_buy_now’} {* Buy now button *} {if !$sArticle.sConfigurator && !$sArticle.variants && !$sArticle.sVariantArticle && !$sArticle.laststock == 1 && !($sArticle.notification == 1 && {config name=“deactivatebasketonnotification”} == 1)} [Bestellen]({url controller=‘checkout’ action=‘addArticle’ sAdd=$sArticle.ordernumber} “{s name=‘ListingBoxLinkBuy’}{/s}”) {/if} {/block}

{if $sArticle.pseudoprice}
%
{/if} {/block}[/code] Liveshopping-Box: [code]
DEAL

{include file=“frontend/plugins/live_shopping/data.tpl” liveShopping=$liveShopping}

{se name=“sLiveDays”}Tage{/se}
{$liveShopping.remaining.days}

{se name=“sLiveHours”}Std.{/se}
{$liveShopping.remaining.hours}

{se name=“sLiveMinutes”}Min.{/se}
{$liveShopping.remaining.minutes}

{se name=“sLiveSeconds”}Sek.{/se}
{$liveShopping.remaining.seconds}

{if $sArticle.purchaseunit} {block name=‘frontend_detail_data_price’}
{if $sArticle.purchaseunit != $sArticle.referenceunit} {if $sArticle.referenceunit} {se name=“DetailDataInfoContent” namespace=“frontend/detail/data”}{/se} {$sArticle.purchaseunit} {$sArticle.sUnit.description} ({$liveShopping.referenceUnitPrice|currency} {s name=“Star” namespace=“frontend/listing/box_article”}{/s} / {$sArticle.referenceunit} {$sArticle.sUnit.description}) {/if} {/if}
{/block} {/if}
{se name=“reducedPrice”}Statt: {/se}{$liveShopping.startPrice|currency} {s namespace=“frontend/listing/box_article” name=“Star”}*{/s}
Jetzt {$liveShopping.currentPrice|currency}
{if $liveShopping.limited === 1}

{se name=“sLiveStill”}Noch{/se}
{$liveShopping.quantity}
{se name=“sLivePiece”}Stück{/se}

{/if}
{se name=“sLiveSave”}Sie sparen{/se} {$liveShopping.percentage|number_format:2:’,’: ‘.’}%

{block name=‘frontend_detail_actions_notepad’} [{se name=“DetailLinkNotepad”}{/se}]({url controller=‘note’ action=‘add’ ordernumber=$sArticle.ordernumber} “{s name=‘DetailLinkNotepad’}{/s}”) {/block}

{block name=‘frontend_listing_box_article_actions_buy_now’} {* Buy now button *} {if !$sArticle.sConfigurator && !$sArticle.variants && !$sArticle.sVariantArticle && !$sArticle.laststock == 1 && !($sArticle.notification == 1 && {config name=“deactivatebasketonnotification”} == 1)} [Bestellen]({url controller=‘checkout’ action=‘addArticle’ sAdd=$sArticle.ordernumber} “{s name=‘ListingBoxLinkBuy’}{/s}”) {/if} {/block}

[/code] Vielen Dank für eure Hilfe.