on 6.5 nukes it uses opentable for the phpbb forums, if you want to change the opentable bg from color to image you can do that by editing your theme.php, find opentable function (should be first couple lines on most themes, or if your theme uses table.php then open that.) It should look something like this
|
Code:
|
function OpenTable() {
global $bgcolor1, $bgcolor2;
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\"><tr><td>\n";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\"><tr><td>\n";
} |
change it to:
|
Code:
|
function OpenTable() {
global $bgcolor1, $bgcolor2;
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\" ><tr><td background=\"themes/yourtheme/images/yourimage.gif\">\n";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"8\" ><tr><td>\n";
} |
replace yourimage with what ever bg image your using. hope this helps