Jump to content

[Tema] Aggiungere un'immagine ad un "block<x>"


ercellot

Recommended Posts

Salve a tutti, sto provando a modificare il modulo newsletter del front office, inserndo un'immagine jpg, sotto il pulsante ok, ho modificato il .tpl svuotato lo "smarty" ma sul sito non vedo nulla di diverso (devo forse modificare anche il .php?)

 

<!-- Block Newsletter module-->
<div id="newsletter_block_left" class="block">
<h4>{l s='Newsletter' mod='blocknewsletter'}</h4>
<div class="block_content">
{if isset($msg) && $msg}
 <p class="{if $nw_error}warning_inline{else}success_inline{/if}">{$msg}</p>
{/if}
 <form action="{$link->getPageLink('index.php')}" method="post">
  <p><input type="text" name="email" size="18" value="{if isset($value) && $value}{$value}{else}{l s='your e-mail' mod='blocknewsletter'}{/if}" onfocus="javascript:if(this.value=='{l s='your e-mail' mod='blocknewsletter'}')this.value='';" onblur="javascript:if(this.value=='')this.value='{l s='your e-mail' mod='blocknewsletter'}';" /></p>
  <p>
<select name="action">
 <option value="0"{if isset($action) && $action == 0} selected="selected"{/if}>{l s='Subscribe' mod='blocknewsletter'}</option>
 <option value="1"{if isset($action) && $action == 1} selected="selected"{/if}>{l s='Unsubscribe' mod='blocknewsletter'}</option>
</select>
<input type="submit" value="ok" class="button_mini" name="submitNewsletter" />
  </p>
  <p><img src="Immagine4.jpg" width="134" height="131" /></p>
 </form>
</div>
</div>
<!-- /Block Newsletter module-->

 

la riga aggiunta e': " <p><img src="Immagine4.jpg" width="134" height="131" /></p> "

il file di immagine si trova nella stessa directory del modulo blocknewsletter.

 

Grazie.

 

PS. se volessi usare un'immagine di sfondo del tema diversa che file del template dovrei modificare?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...