torstenv Posted February 24, 2014 Report Share Posted February 24, 2014 hallo, wir arbeiten mit einigen Shops mit einem Template und angepassten css-Dateien in der Version 4.1 Alle ausser ein Shop haben das Logo in png-Format. Nur ein Shop hat ein animiertes gif-Logo. Wie muss ich das in der index.html ansteuern, dass die Shop-ID 21 ein top_logo_21.gif und nicht top_logo_21.png ist: <a href="{link page='index'}" title="{txt key=TEXT_HOME}{if !$store_name} - {$smarty.const._STORE_NAME|escape:'html'}{else}{$store_name|escape:'html'}{/if}"> <img src="{$tpl_url_path}img/top_logo_{$store_id}.png" alt="{txt key=TEXT_HOME}{if !$store_name} - {$smarty.const._STORE_NAME|escape:'html'}{else}{$store_name|escape:'html'}{/if}" /> </a> Ich bitte um eure Hilfe! lg, bea Link to comment Share on other sites More sharing options...
mzanier Posted February 24, 2014 Report Share Posted February 24, 2014 <img src="{$tpl_url_path}img/top_logo_{$store_id}.{if $store_id eq '21'}gif{else}png{/if}" alt="{txt key=TEXT_HOME}{if !$store_name} - {$smarty.const._STORE_NAME|escape:'html'}{else}{$s tore_name|escape:'html'}{/if}" /> sollte es erledigen Link to comment Share on other sites More sharing options...
torstenv Posted February 24, 2014 Author Report Share Posted February 24, 2014 jepp, super funktioniert!!! dankeschön!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.