thanks, it works proplerly now. I have a suggestion:
In the main file, I made this change:
Code:
echo("<table border=0 bgcolor=$tbg cellpadding=4 cellspacing=$cs $twt><tr bgcolor=\"$hc\">\n");
and then in the config file, I added this variable:
Code:
$bc1 = "#ABABAB"; // first alt color
$bc2 = "#BCBCBC"; // second alt color
$hc = "#7C869C"; // head background color
$tbg = "#000000"; //table background color
$lc = "#ff6600"; // link color
$tc = "#FFFFFF"; // text color
$f = "Arial"; // font face
That lets people change the color of the little lines that are drawn between the cells of the table. This will only go into effect if they have the cellpadding set to 1 or more.
Just a little HTML trick you guys might want to try.