28172 sujets

CSS et mise en forme, CSS3

Bonjour,

J'essaie desperement d'aligner mes puces au dessus d'un champs de recherche, sous firefox cela fonction voir ci-dessous.

http://nsa02.casimages.com/img/2008/09/26/08092612561398650.png

Mais sous IE non Smiley ohwell

http://nsa02.casimages.com/img/2008/09/26/080926125754769332.png

le site http://kitten13.dyndns.org/index.php



<form action="search.php" name="itemForm" id="itemForm" method="get">
   	                        
	<div class="SearchBox">
	
	
	<li> 
	<strong style="color:white;">Quoi?</strong>
    <small>(Appart, voiture, Ordi...)</small>
	<td><input id="searchword" name="searchword" size="25" class="txt" value="{$searchword}" /> </td>
	
	<strong style="color:white;">Dans?</strong>
    <small>(emploi, immo, maison...)</small>
	<td>
	<select name="catid_search">
    <option value="0">{$smarty.const.LA_ALL}</option>{$dropdown_catlist}
	</select>
    </td>
	</li>
										
										<td><input type="submit" class="newButton" name="do_search" value="{$smarty.const.LA_SEARCH}" /></td>


									</div>

									</form>






.SearchBox li {
list-style-type:none;
}
.SearchBox li {
list-style-type:none;
}


Modifié par kitten13 (26 Sep 2008 - 14:26)
c'est bon j'ai trouver grâce à NoobX

Il faut faire un tableau avec 3 colonne.

je mais le code pour les autres :

<table cellspacing="0" cellpadding="0" border="0" valign="top">
<tbody>
<tr>
<td valign="top">
<img height="43" width="58" alt="" src="http://kitten13.dyndns.org/layout_images/new2/index_26.gif"/>
</td>
<td nowrap="true" background="http://kitten13.dyndns.org/layout_images/new2/index_27.gif">
<table cellspacing="0" cellpadding="1" border="0">
<tbody>
<tr>
 <form action="search.php" name="itemForm" id="itemForm" method="get">   
 
<table cellspacing="0" cellpadding="1" border="0">   
   <tr> 
     <td><strong style="color:white;">Quoi?</strong>  <small>(Appart, voiture, Ordi...)</small></td> 
     <td><strong style="color:white;">Dans?</strong>  <small>(emploi, immo, maison...)</small></td> 
     <!-- <td>&nbsp;</td>  -->
   </tr> 
   <tr> 
     <td><input id="searchword" name="searchword" size="25" class="txt" value="{$searchword}" /></td> 
     <td><select name="catid_search">   
    <option value="0">{$smarty.const.LA_ALL}</option>{$dropdown_catlist}   
	</select> 
	</td> 
     <td><input type="submit" class="newButton" name="do_search" value="{$smarty.const.LA_SEARCH}" /></td> 
   </tr> 
 </table> 
 </form> 
									
</tr>

</tbody>

</table>

Modifié par kitten13 (26 Sep 2008 - 14:28)