Jump to content

Specificare le dimensioni dell'immagine


Recommended Posts

Ciao,

Tramite analisi gtmetrix ricevo un errore per le immagini.

Tutte le immagini non hanno l'attibuto altezza e larghezza

come posso risolvere?

Ho provato a contattare la sviluppatore del template e mi ha risposto:

it's not possible to add width and height attribute in img tag because all data are daynamic in product.tpl file.

Secondo voi mi sta dicendo la verità?

Edited by Antonio (see edit history)
Link to comment
Share on other sites

Salve,

non stá dicendo la veritá....che sia ps 1.6 o ps 1.7 in un tpl avrai questo codice per es:

 

<IMG src="{$module_dir}img/{$info.file_name}" alt="{$info.text|escape:html:'UTF-8'}"

 

 

Quindi dal codice sopra Google ti dice che mancano i due attributi

Modifica aggiungendo i due attributi dove in questo caso per es hai dimensioni fisse in pixel..66px e 52 px----ma puoi sostituire con with="100%"  height="auto" cosí si adattano alla finestra.

 

<IMG src="{$module_dir}img/{$info.file_name}" width="66" height="52" alt="{$info.text|escape:html:'UTF-8'}"

 

 

Ciao

 

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...