ciao a tutti,

ho necessità di aggiungere un immagine di sfondo a un form classico con campi da compilare, ho provato con i comandi <td> e poi con la voce background e consecutivo link ma nulla.

via lascio il codice

codice:
  
									<div class="form_int">
										<form name="contatti" method="post" action="/contatti?id_lingua=1">
											<input type="hidden" name="send" value="1">
										        
											<fieldset> 
												<legend>----INVIA LA TUA RICHIESTA DI FINANZIAMENTO----</legend>
												

												
												
												<table border="0" cellpadding="0" cellspacing="8">
													<tr>
														<td>
														</td>
														<td align="right">
															 * Campi obbligatori
														</td>
													</tr>
													
<tr>
<td><label>Nome*</label></td>
<td><input type="text" class="contact_form" name="contact_form_name" maxlength="50" size="15" value=""> </td>
</tr>

													
<tr>
<td><label>Cognome*</label></td>
<td><input type="text" class="contact_form" name="contact_form_surname" maxlength="50" size="15" value=""> </td>
</tr>


<tr>
<td><label>Importo richiesto</label></td>
<td><input type="text" class="contact_form" name="contact_form_import" maxlength="50" size="15" value=""> </td>
</tr>


<tr>
<td><label>Rata mensile</label></td>
<td><input type="text" class="contact_form" name="contact_form_rate" maxlength="50" size="15" value=""> </td>
</tr>

	
<tr>
<td><label>Professione</label></td>
<td><input type="text" class="contact_form" name="contact_form_job" maxlength="50" size="15" value=""> </td>
</tr>

												
<tr>
<td><label>Ragione sociale</label></td>
<td><input type="text" class="contact_form" name="contact_form_company" maxlength="30" size="15" value=""> </td>
</tr>


<tr>
<td><label>Citta</label></td>
<td><input type="text" class="contact_form" name="contact_form_city" maxlength="50" size="15" value=""> </td>
</tr>


<tr>
<td><label>Provincia</label></td>
<td><input type="text" class="contact_form" name="contact_form_province" maxlength="50" size="15" value=""> </td>
</tr>

													
<tr>
<td><label>Telefono</label></td>
<td><input type="text" class="contact_form" name="contact_form_phone" maxlength="20" size="15" value=""> </td>
</tr>

													
<tr>
<td><label>Indirizzo email</label></td>
<td><input type="text" class="contact_form" name="contact_form_email" maxlength="254" size="15" value=""> </td>
</tr>

													<tr>
<td valign="top"><label>Messaggio*</label></td>
<td><textarea rows="5" cols="30" name="contact_form_msg"></textarea>
</td>
</tr>

													<tr>
	<td valign="top"><label>Privacy*</label></td>
	<td style="font-size: 11px">
		<div style="display: none;"><input type="radio" name="contact_form_privacy" value="0" checked/></div>
		<input type="radio" name="contact_form_privacy" value="1" />Dopo aver preso visione della presente informativa sulla privacy acconsento al trattamento dei dati personali comunicati.

		
	</td>
</tr>

													<tr>
														<td colspan="2" align="right"><input class="submit_send" type="submit" value="Invia">
														</td>
													</tr>
												</table>
											
											</fieldset>
										        
                                                                               </form>
									</div>


GRAZIE A TUTTI