ultimas noticias IE = perfec MZ= mal

Milla

Hola sabios amigos xD os vengo a pedir ayuda para sulucionar un fallo q no logro sulucionar por mi mismo .

El fallo es q eh modificado un bloque tipico de ultimos post de php-nuke y me a ekdado una cosa asi : http://img301.imageshack.us/img301/3971/noie5rb.jpg bueno asi es como se ve con el IE pero mi sopresa llego cuando lo mire con el MZ : http://img301.imageshack.us/img301/7097/nomz4oq.jpg como podéis apreciar se ve todo como si estuviera centrado pero en realidad lo eh puesto todo ala izquierda y no tira ... bueno aquí os dejo el bloque haber si sabéis solucionarlo :

if (eregi("block-Forums.php", $PHP_SELF)) {
Header("Location: index.php");
die();
}

include_once ('blocks/smileys.php');

global $prefix, $dbi, $sitename, $user, $cookie, $group_id;
$count = 1;
$content = "<table width=\"100%\" border=\"0\">";
$content .="<STYLE=\"text-decoration: none\"><font color=\"#FFFFFF\"><div align=\"center\">Foro<br><br>";

$result1 = sql_query("SELECT t.topic_id, t.topic_last_post_id, t.topic_title, f.forum_name, f.forum_id FROM ".$prefix."bbtopics t, ".$prefix."bbforums f where t.forum_id=f.forum_id and f.auth_view=0 ORDER BY t.topic_last_post_id DESC LIMIT 10", $dbi);
$content .= "";
while(list($topic_id, $topic_last_post_id, $topic_title, $forum_name, $forum_id) = sql_fetch_row($result1, $dbi)) {
$result2 = sql_query("SELECT topic_id, poster_id, FROM_UNIXTIME(post_time,'%b %d, %Y at %T') as post_time FROM ".$prefix."_bbposts where post_id='$topic_last_post_id'", $dbi);
list($topic_id, $poster_id, $post_time)=sql_fetch_row($result2, $dbi);

$result3 = sql_query("SELECT username, user_id FROM ".$prefix."_users where user_id='$poster_id'", $dbi);
list($username, $user_id)=sql_fetch_row($result3, $dbi);

$topic_title=parseEmoticons($topic_title);
// Remove the comment below to add the counter
//$content .="<STYLE=\"text-decoration: none\"><font color=\"#666666\">Message: $count<br>";

$content .= "<tr><strong>&middot;</big></strong><a href=\"modules.php?name=Forums&file=viewtopic&p=$topic_last_post_id#$topic_last_post_id\"align=\"left\"> $topic_title </a></tr>";

}
$content .= "</table>";
?>

EnZo

porque no nos pegas el html que es lo que te va mal, no el php que sabes que no es.

Whose

Ponle un salto de linea al final del titulo o mete el titulo en un parrafo <p> titulo </p>

Usuarios habituales

  • Whose
  • EnZo
  • Milla