Os dejo una captura para que lo veais mejor


PD: Los datos de mi foro en la firma

Gracias
Recordad que para pedir soporte alguno, debéis facilitar los datos de soporte oportunos por favor, mirad aquí y leer las Normas generales del foro, esto nos servirá de ayuda para dar el mejor soporte..
Gracias.
La Administración de phpBB España.
Código: Seleccionar todo
'FORUM_NAME' => $forum_data[$j]['forum_name'],
Código: Seleccionar todo
//'FORUM_NAME' => $forum_data[$j]['forum_name'],
'FORUM_NAME' => ($unread_topics) ? '<span class="newposts">' . $forum_data[$j]['forum_name'] . '</span>' : $forum_data[$j]['forum_name'],
Código: Seleccionar todo
.newposts { color:#FF0000 }
Código: Seleccionar todo
$topic_title = ( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title'];
Código: Seleccionar todo
if ( $unread_topics ) {
$topic_title = '<span class="newposts">' . (( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title']) . '</span>';
} else {
$topic_title = ( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title'];
}
Código: Seleccionar todo
'FORUM_NAME' => ($unread_topics) ? '<span class="newposts">' . $forum_data[$j]['forum_name'] . '</span>' : $forum_data[$j]['forum_name'],
Código: Seleccionar todo
'FORUM_NAME' => ($unread_topics && ( $forum_data[$j]['forum_status'] != FORUM_LOCKED )) ? '<span class="newposts">' . $forum_data[$j]['forum_name'] . '</span>' : $forum_data[$j]['forum_name'],
Código: Seleccionar todo
$topic_title = ( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title'];
Código: Seleccionar todo
$newest_post_img = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&view=newest") . '"><img src="' . $images['icon_newest_reply'] . '" alt="' . $lang['View_newest_post'] . '" title="' . $lang['View_newest_post'] . '" border="0" /></a> ';
}
}
else
{
$folder_image = $folder;
$folder_alt = ( $topic_rowset[$i]['topic_status'] == TOPIC_LOCKED ) ? $lang['Topic_locked'] : $lang['No_new_posts'];
$newest_post_img = '';
}
Código: Seleccionar todo
if ( $unread_topics && ($topic_rowset[$i]['topic_status'] != TOPIC_LOCKED) ) {
$topic_title = '<span class="newposts">' . (( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title']) . '</span>';
} else {
$topic_title = ( count($orig_word) ) ? preg_replace($orig_word, $replacement_word, $topic_rowset[$i]['topic_title']) : $topic_rowset[$i]['topic_title'];
}
Código: Seleccionar todo
$attach_img = $images['icon_minipost_new'];
$l_attach_img = $lang['New_posts'];
Código: Seleccionar todo
$attach_forumname = '<span class="newposts">' . $value['forum_name'] . '</span>';
Código: Seleccionar todo
'sub_name'=>$value['forum_name'],
Código: Seleccionar todo
'sub_name'=>(empty($attach_forumname)) ? $value['forum_name'] : $attach_forumname,
Código: Seleccionar todo
// END last post check
Código: Seleccionar todo
$attach_forumname = '';
Código: Seleccionar todo
$newest_post_img = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&view=newest") . '"><img src="' . $images['icon_newest_reply'] . '" alt="' . $lang['View_newest_post'] . '" title="' . $lang['View_newest_post'] . '" border="0" /></a> ';
Código: Seleccionar todo
$topic_title = '<span class="newposts">' . $topic_title . '</span>';