Portal Themes, PHPnuke Themes and PostNuke themes Themes Home Page Profile Free Nuke theme Downloads Nuke theme Support Forums Nuke Themes Store
spacer image spacer image
Featured
Call of Duty 4 Nuke Theme

Call of Duty 4 Nuke Theme

Call of Duty 4 PHPNuke Theme, Call of Duty 4 PostNuke Theme, Call of Duty 4 Evo Theme, Call of Duty ...

$15.00
Enter Store ]
spacer image
Main Menu
spacer image
Site Status
spacer image Welcome Guest
Join us!
spacer image
spacer imagespacer imagespacer image
spacer image
Registration is free and gives full access to site
spacer image
spacer image Register
spacer image Login:
User:

spacer image
Password:

spacer image
Remember me
spacer image
spacer imageMembers:
Last: Today New:0
Last: Yesterday:0
Last: Total:7536
Last: Last:
maxfoot
Members: Online
Members: Members:0
Guests: Guests:33
Total: Total:33
spacer image Online Members
No online members
spacer image
Past News
Older articles
spacer image


Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
CitoreOffline
Post subject: Change Header Font on Journal Page  PostPosted: Mar 24, 2009 - 07:39 PM



Joined: Jul 11, 2008
Posts: 16

Status: Offline
As always - the support here rocks!

www.immortalreigns.com

Click on Journal on the left menu.

My heading font color appears black and hard to read with the colored backgrounds.

How do I change that font color to white without affecting anything globaly on the site?

Thank you again!!!!!!
 
 View user's profile Send private message  
Reply with quote
marsOffline
Post subject: RE: Change Header Font on Journal Page  PostPosted: Mar 25, 2009 - 02:26 AM
Site Admin


Joined: Aug 15, 2004
Posts: 4277

Status: Offline
Edit modules/Journal/index.php and replace it with this code

Code:

<?php

/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2005 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* Based on Atomic Journal                                              */
/* Copyright (c) by Trevor Scott                                        */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if (!defined('MODULE_FILE')) {
   die ("You can't access this file directly...");
}

require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);

$pagetitle = "- "._USERSJOURNAL."";

include("header.php");
include("modules/$module_name/functions.php");

cookiedecode($user);
$username = $cookie[1];

startjournal($sitename,$user);

function last20($bgcolor1, $bgcolor2, $bgcolor3, $username) {
   global $prefix, $user_prefix, $db, $module_name;
   OpenTable();
   echo ("<div align=\"center\" class=title>"._20ACTIVE."</div><br>");
   echo ("<table align=center border=1 cellpadding=0 cellspacing=0>");
   echo ("<tr>");
   echo ("<td width=150>&nbsp;<strong>"._MEMBER."</strong> "._CLICKTOVIEW."</td>");
   echo ("<td width=70 align=center><strong>"._VIEWJOURNAL."</strong></td>");
   echo ("<td width=70 align=center><strong>"._MEMBERPROFILE."</strong></td>");
   if ($username == "") {
      echo "<td width=70 align=center><strong>"._CREATEACCOUNT2."</strong></td>";
   } else {
      if (is_active("Private_Messages")) {
         echo "<td width=70 align=center><strong>"._PRIVMSGJ."</strong></td>";
      }
   }
   echo "</tr>";
   $sql = "SELECT j.id, j.joid, j.nop, j.ldp, j.ltp, j.micro, u.user_id, u.username FROM ".$prefix."_journal_stats j, ".$user_prefix."_users u where u.username=j.joid ORDER BY 'ldp' DESC";
   $result = $db->sql_query($sql);
   while ($row = $db->sql_fetchrow($result)) {
      if ($dcount >= 21) {
         echo "</table>";
         CloseTable();
         journalfoot();
         die();
      } else {
         $dcount = $dcount + 1;
         print  ("<tr>");
         printf ("<td>&nbsp;&nbsp;<a href=\"modules.php?name=$module_name&file=search&bywhat=aid&exact=1&forwhat=%s\">%s</a></td>", $row[joid], $row[joid]);
         printf ("<td align=center><div class=title><a href=\"modules.php?name=$module_name&file=search&bywhat=aid&exact=1&forwhat=%s\"><img src=\"modules/$module_name/images/binocs.gif\" border=0 alt=\""._VIEWJOURNAL2."\" title=\""._VIEWJOURNAL2."\"></a></td>", $row[joid], $row[joid]);
         printf ("<td align=center><a href=\"modules.php?name=Your_Account&op=userinfo&username=%s\"><img src=\"modules/$module_name/images/nuke.gif\" alt=\""._USERPROFILE2."\" title=\""._USERPROFILE2."\" border=0></a></td>", $row[joid], $row[joid], $row[joid]);
         if ($username == "") {
            print ("<td align=center><a href=\"modules.php?name=Your_Account&op=new_user\"><img src=\"modules/$module_name/images/folder.gif\" border=0 alt=\""._CREATEACCOUNT."\" title=\""._CREATEACCOUNT."\"></a></td>");
         } else {
            if (is_active("Private_Messages")) {
               printf ("<td align=center><a href=\"modules.php?name=Private_Messages&mode=post&u=$row[user_id]\"><img src='modules/$module_name/images/chat.gif' border='0' alt='"._PRIVMSGJ2."'></a></td>", $row[joid], $row[joid]);
            }
         }
         echo "</tr>";
      }
   }
   echo "</table>";
   CloseTable();
}


function all($bgcolor1,$bgcolor2,$bgcolor3,$sitename, $username) {
   global $prefix, $user_prefix, $db, $module_name;
   OpenTable();
   echo ("<div align=\"center\" class=title>"._ALPHABETICAL."</div><br>");
   echo ("<table align=center border=1 cellpadding=0 cellspacing=0>");
   echo ("<tr>");
   echo ("<td width=150>&nbsp;<strong>"._MEMBER."</strong> "._CLICKTOVIEW."</td>");
   echo ("<td width=70 align=center><strong>"._VIEWJOURNAL."</strong></td>");
   echo ("<td width=70 align=center><strong>"._MEMBERPROFILE."</strong></td>");
   if ($username == "") {
      echo ("<td width=70 align=center><strong>"._CREATEACCOUNT2."</strong></td>");
   } else {
      echo ("<td width=70 align=center><strong>"._PRIVMSGJ."</strong></td>");
   }
   echo ("</tr>");
   $sql = "SELECT j.id, j.joid, j.nop, j.ldp, j.ltp, j.micro, u.user_id FROM ".$prefix."_journal_stats j, ".$user_prefix."_users u where u.username=j.joid ORDER BY 'joid'";
   $result = $db->sql_query($sql);
   while ($row = $db->sql_fetchrow($result)) {
      print  ("<tr>");
      printf ("<td>&nbsp;&nbsp;<a href=\"modules.php?name=$module_name&file=search&bywhat=aid&forwhat=%s\">%s</a></td>", $row[joid], $row[joid]);
      printf ("<td align=center><div class=title><a href=\"modules.php?name=$module_name&file=search&bywhat=aid&forwhat=%s\"><img src=\"modules/$module_name/images/binocs.gif\" border=0 alt=\""._VIEWJOURNAL2."\" title=\""._VIEWJOURNAL2."\"></a></td>", $row[joid], $row[joid]);
      printf ("<td align=center><a href=\"modules.php?name=Your_Account&op=userinfo&username=%s\"><img src=\"modules/$module_name/images/nuke.gif\" alt=\""._USERPROFILE2."\" title=\""._USERPROFILE2."\" border=0></a></td>", $row[joid], $row[joid], $row[joid]);
      if ($username == "") {
         print ("<td align=center><a href=\"modules.php?name=Your_Account&op=new_user\"><img src=\"modules/$module_name/images/folder.gif\" border=0 alt=\""._CREATEACCOUNT."\" title=\""._CREATEACCOUNT."\"></a></td>");
      } elseif ($username != "" AND is_active("Private_Messages")) {
         printf ("<td align=center><a href=\"modules.php?name=Private_Messages&mode=post&u=$row[user_id]\"><img src='modules/$module_name/images/chat.gif' border='0' alt='"._PRIVMSGJ2."'></a></td>", $row[aid], $row[aid]);
      }
      echo "</tr>";
   }
   echo "</table>";
   CloseTable();
}

echo "<br>";
OpenTable();
echo ("<div align=center> [ <a href=\"modules.php?name=$module_name&op=last\">"._20AUTHORS."</a> | <a href=\"modules.php?name=$module_name&op=all\">"._LISTALLJOURNALS."</a> | <a href=\"modules.php?name=$module_name&file=search&disp=showsearch\">"._SEARCHMEMBER."</a> ]</div>");
CloseTable();
echo "<br>";

switch($op) {
   case "last":
   last20($bgcolor1,$bgcolor2,$bgcolor3, $username);
   break;


   case "all":
   all($bgcolor1,$bgcolor2,$bgcolor3,$sitename, $username);
   break;


   default:
   last20($bgcolor1,$bgcolor2,$bgcolor3, $username);
   break;
}

journalfoot();

?>
 
 View user's profile Send private message  
Reply with quote
Display posts from previous:     
Jump to:  
All times are GMT - 5 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2006 The PNphpBB Group
Credits
spacer image spacer image

Welcome to www.PortalThemes.com, Your #1 Source for

Zikula Themes

,

PHP-Nuke themes

,

MD-Pro Themes

,

Nuke Evolution Themes

,

Platinum Nuke Themes

,

Xanthia Themes

,

AutoThemes and

Joomla Templates
World of Warcraft and Blizzard Entertainment are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. These terms and all related materials, logos, and images are copyright Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment
SiteMap SiteMap 2 SiteMap 3