Ok I am having trouble here. Where would you put the code for it to work.
Here is the snippet of code from my themebox -
===================
function themesidebox($title, $content) {
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#eeeeee\" width=\"150\"><tr><td>\n"
."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"150\">\n"
."<tr>\n"
."<td><img src=\"themes/Somara-Platinum/images/sideBoxTop.gif\"></td>\n"
."</tr>\n"
."</table>\n"
."<table border=\"0\" cellpadding=\"3\" cellspacing=\"1\" bgcolor=\"#000000\" width=\"100%\">\n"
."<tr><td bgcolor=\"#CACACA\" align=\"center\">\n"
."<font size=\"2\" color=\"#363636\"><b>$title</b></font>\n"
."</td></tr>\n"
."<tr>\n"
."<td bgcolor=\"#eeeeee\">$content</td>\n"
."</tr>\n"
."</table></td></tr></table>\n"
."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"150\">\n"
."<tr>\n"
."<td><img src=\"themes/Somara-Platinum/images/sideBoxBottom.gif\"></td>\n"
."</tr>\n"
."</table>\n"
."<br>\n\n\n";
}
?>
=========================
|