Jump to content

Recommended Posts

Estoy modificando el header.tpl y tengo problemas en la celda de la derecha.

Cuando intento poner el texto, el sistema omite todo el header. Al parecer, el texto no cabe en la celda.

<table style="width: 100%">
<tr>
	<td style="width: 50%">
		{if $logo_path}
			<img src="{$logo_path}" style="width:{$width_logo}px; height:{$height_logo}px;" />
		{/if}
	</td>
	<td style="width: 50%; text-align: left;">
		<table style="width: 90%">
			<tr>
				<td style="font-weight: bold; font-size: 14pt; color: #444; width: 100%;">FACTURA DE VENTA</td>
			</tr>
			<tr>
				<td style="font-size: 14pt; color: #9E9F9E">Resolución DIAN No. 320000560953 del 2009/04/21 Rango RV 1 al RV 1000 No somos Grandes Contribuyentes 
						   No somos Auto retenedores - IVA Régimen Común - Actividad Económica ICA 7400 - Tarifa 9.66 X 1000</td>
			</tr>
			
		</table>
	</td>
</tr>
</table>
Link to comment
Share on other sites

Hola a todos

 

Estoy modificando la factura de mi tienda (invoice.tpl) y quiero ponerle una imagen de fondo a la tabla de productos pero estoy no se como poner la dirección de la imagen.

He hecho estos intentos:

 

<div style="background: url('{$img_ps_dir}/bombillo.png'); background-size: 600px 658px; background-repeat: no-repeat;"></div>

 

<div style="background: url('img/bombillo.png'); background-size: 600px 658px; background-repeat: no-repeat;"></div>

 

<div style="background: url('/img/bombillo.png'); background-size: 600px 658px; background-repeat: no-repeat;"></div>

 

Ninguno da resultado.

Si alguien me puede ayudar quedaría muy agradecido.

 

Link to comment
Share on other sites

Trate de envolver la etiqueta <div> superior en invoice.tpl <body style="background: url('img/bombillo.png')"> .... </body>
Si va a trabajar a continuación, añadir más opciones de estilo CSS.

 

Try to wrap the uppermost <div> tag in invoice.tpl with <body style="background: url('img/bombillo.png')"> .... </body>

If it will work then add more CSS style options.

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

Guest
This topic is now closed to further replies.
×
×
  • Create New...