Aller au contenu

Probleme d'allignement vers le bas sous IE


kamil94

Sujets conseillés

Bonjour,

Voici le lien de mon site : http://serveurro.free.fr/index.php

Le probleme c'est que le module login bug sous IE il decale le site et ca fait un effet horible ! Pourtant sous Firefox tout est impec :).

 <td align="center" valign="bottom" background="images/index_r2_c8.jpg"><?php

$logue = '

<table border="0" cellpadding="0" valign="bottom" cellspacing="0" align="center">
<tr>
<td align="center"><a href="?logout=true">' . $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]</a> <td align="center"><a href="' . append_sid("forum/profile.$phpEx?mode=editprofile") . '">' . $lang['Profile'] . '</a>
</td>
</tr>
<tr>

</td>
</tr>
</table>';

$non_logue = '

<form action="' . $phpbb_root_path . 'login.php" method="post">
<table border="0" cellpadding="1" cellspacing="1" align="center">
<tr>
<td class="titre">Login : <input type="text" class="Style6" name="username" size="10" maxlength="12"> <td class="titre">Pass : <input type="password" name="password" class="Style6" size="10" maxlength="12"> <td align="center"><input type="hidden" name="redirect" value="' . $adresse_site . append_sid($redirect_login) . '"><input type="submit" value="OK" class="Style6" name="login"> <a href="inscription.php">Inscrivez-vous</a>
</td>
</tr>
</table>
</form>';

if ( $userdata['session_logged_in'] )
{
echo $logue;
}
else
{
echo $non_logue;
}
?> </td>
<td rowspan="2" colspan="2"><img name="index_r2_c9" src="images/index_r2_c9.jpg" width="51" height="40" border="0" id="index_r2_c9" alt="" /></td>

Merci de m'aider :)

PS: je rajoutel body :

body {
background-image: url();
background-repeat: no-repeat;
background-color: #000000;
margin: 0;
padding: 0;
margin-top: 0;

Modifié par kamil94
Lien vers le commentaire
Partager sur d’autres sites

Quelques petites corrections :

$logue = '

<table border="0" cellpadding="0" valign="bottom" cellspacing="0" align="center">

<tr>

<td align="center"><a href="?logout=true">' . $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]</a> :thumbsup: </td>

<td align="center"><a href="' . append_sid("forum/profile.$phpEx?mode=editprofile") . '">' . $lang['Profile'] . '</a>

</td>

</tr>

:hypocrite: ça ne sert pas !

============> <tr>

============> </td>

============> </tr>

</table>';

..../.....

Tes <td> sont pas fermé :

<td class="titre">Login : <input type="text" class="Style6" name="username" size="10" maxlength="12"> :thumbsup: </td>

<td class="titre">Pass : <input type="password" name="password" class="Style6" size="10" maxlength="12"> :thumbsup: </td>

<td align="center"><input type="hidden" name="redirect" value="' . $adresse_site . append_sid($redirect_login) . '"><input type="submit" value="OK" class="Style6" name="login"> <a ref="inscription.php">Inscrivez-vous</a> :thumbsup: </td>

Modifié par celtic
Lien vers le commentaire
Partager sur d’autres sites

C'est bon c'est corrigé :) mais le probleme n'est toujours pas résolue... :( ca fait toujours ce fichu bug d'affichage

Voici le nouveau code :

 <td align="center" valign="middle" background="images/index_r2_c8.jpg"><DIV ALIGN=down></DIV>

<?php

$logue = '

<table border="0" cellpadding="0" valign="bottom" cellspacing="0" align="center">
<tr>
<td align="center"><a href="?logout=true">' . $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]</a></td>
<td align="center"><a href="' . append_sid("forum/profile.$phpEx?mode=editprofile") . '">' . $lang['Profile'] . '</a>
</td>
</tr>
</table>';

$non_logue = '

<form action="' . $phpbb_root_path . 'login.php" method="post">
<table border="0" cellpadding="1" cellspacing="1" align="center">
<tr>
<td class="titre">Login : <input type="text" class="Style6" name="username" size="10" maxlength="12"></td> <td class="titre">Pass :<input type="password" name="password" class="Style6" size="10" maxlength="12"></td> <td align="center"><input type="hidden" name="redirect" value="' . $adresse_site . append_sid($redirect_login) . '"><input type="submit" value="OK" class="Style6" name="login"> <a href="inscription.php">Inscrivez-vous</a></td>
</td>
</tr>
</table>
</form>';

if ( $userdata['session_logged_in'] )
{
echo $logue;
}
else
{
echo $non_logue;
}
?>
<td rowspan="2" colspan="2"><img name="index_r2_c9" src="images/index_r2_c9.jpg" width="51" height="40" border="0" id="index_r2_c9" alt="" /></td>

Modifié par kamil94
Lien vers le commentaire
Partager sur d’autres sites

Veuillez vous connecter pour commenter

Vous pourrez laisser un commentaire après vous êtes connecté.



Connectez-vous maintenant
×
×
  • Créer...