I am trying to put this module into my site. Everything seems to work ok but it seems like the page theme is overriding the font colors set in the module. The problem with this is they are so light you cant read them. Here is the code I am using
|
Quote:
|
<?php
#### Generated by Module Creator - By Disipal site (www.disipal.net) ####
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
include("header.php");
$index = 0;
OpenTable();
echo"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">"
. "<html>"
. "<head>"
. "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">"
. "<title>Untitled Document</title>"
. "</head>"
. ""
. "<body>"
. "<table border=\"1\" cellpadding=\"1\" cellspacing=\"1\" bgcolor=\"#8F8F8F\" width=\"620\" >"
. " <tr>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"136\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Member Name</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"176\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Rank</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"88\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Race</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"90\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Class</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"126\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Deed Tally</font></td>"
. " </tr>"
. " <tr>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"136\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Reevug</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"176\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Supreme Overlord</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"88\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Troll</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"90\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Mage</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"126\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">1</font></td>"
. " </tr>"
. " <tr>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"136\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Dan'imal</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"176\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Warchief</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"88\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Undead</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"90\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">Rogue</font></td>"
. " <td align=\"left\" bgcolor=\"#FFFFFF\" width=\"126\"><font color=\"#000000\" size=\"3\" face=\"Verdana\">1</font></td>"
. " </tr>"
. "</table>"
. "</body>"
. "</html>";
CloseTable();
include("footer.php");
?>
|
If you look at the code all the fonts should be black. However when I put them into my theme the colors go to some kinda pale grey that I can't see.