ich habe mir nur die Erweiterung für den Categories Hierarchy Mod eingebaut sonst nichts.
meine Frage ist eigentlich einfach, guckt euch das Bild mal an da wo der Pfeil ist wie bekomme ich das auch in der Farbe (bei mir) Rot hin?


Code: Alles auswählen
if ($wname != '') $link = '<a href="' . $wpgm . '" title="' . $wdesc . '" class="gensmall">' . $wname . '</a>';Code: Alles auswählen
if ($wname != '') $link = '<a href="' . $wpgm . '" title="' . $wdesc . '" class="gensmall_new">' . $wname . '</a>';Code: Alles auswählen
{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}Code: Alles auswählen
<span style="color: #FF0000">Code: Alles auswählen
a.gensmall_new { color: #FF0000; text-decoration: none; }
a.gensmall_new:hover { color: #006699; text-decoration: none; }undcolor: "#FF0000"
sind nach den eigenen Wünschen anzupassen (in diesem Beispiel wären die Links der Subforen rot und bei Hover "phpBB-blau").color: "006699"
Code: Alles auswählen
$link = '';
$wdesc = ereg_replace('<[^>]+>', '', $wdesc);
// ORIGINAL-> if ($wname != '') $link = '<a href="' . $wpgm . '" title="' . $wdesc . '" class="gensmall">' . $wname . '</a>';
if ($wname != '') $Link = '<a href="' . $wpgm . '" title="' . $wdesc . '" class="gensmall_new">' . $wname . '</a>';
if (intval($board_config['sub_level_links']) == 2)
{Code: Alles auswählen
<!-- END forum_icon -->
<span {catrow.forumrow.FORUM_COLOR} class="forumlink"><a href="{catrow.forumrow.U_VIEWFORUM}" {catrow.forumrow.FORUM_COLOR} class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br /></span>
<span class="genmed">{catrow.forumrow.FORUM_DESC}</span>
<!--
<span class="gensmall">{catrow.forumrow.L_MODERATOR}{catrow.forumrow.MODERATORS}{catrow.forumrow.L_LINKS}
-->
<br><span style="color: #FF0000"> {catrow.forumrow.LINKS}</span>
<!-- BEGIN forum_icon -->Code: Alles auswählen
/* General text */
.gen { font-size : 12px; }
.genmed { font-size : 11px; }
.gensmall { font-size : 10px; }
.gen,.genmed,.gensmall { color : #000000; }
a.gen,a.genmed,a.gensmall { color: #000275; text-decoration: none; }
a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: none; }
/* von Oxpus */
a.gensmall_new { color: #FF0000; text-decoration: none; }
a.gensmall_new:hover { color: #006699; text-decoration: none; }
/* von Oxpus */