Hey, my PHP-Nuke theme is this:
PHP Code:
function themesidebox($title, $content) {
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"150\">\n"
."<tr><td width=\"150\" colspan=\"3\">\n"
."<img border=\"0\" src=\"themes/UltraSteel_NoFlash/images/menu2_01.gif\" width=\"150\"></td>\n"
."</tr><tr><td width=\"17\" background=\"themes/UltraSteel_NoFlash/images/menu2_02.gif\"> </td>\n"
."<td width=\"114\" bgcolor=\"#FFFFFF\" valign=\"top\">\n"
."<b>.: $title</b><br>\n"
."$content"
."</td>\n"
."<td width=\"19\" background=\"themes/UltraSteel_NoFlash/images/menu2_04.gif\"> </td>\n"
."</tr><tr><td width=\"150\" colspan=\"3\">\n"
."<img border=\"0\" src=\"themes/UltraSteel_NoFlash/images/menu2_06.gif\" width=\"150\"></td>\n"
."</tr></table><br>\n";
}
?>
What should I edit?