been looking at this for some time now
as you know blocks put in center haven't been coded to use block.html
I found 2 files I belive I should edit
theme.php & mainfile.php
Code:
/************************************************************/
/* Function themecenterbox() */
/* */
/* Control look of your blocks. Just simple. */
/************************************************************/
function themecenterbox($title, $content) {
$tmpl_file = "themes/DarkSide/blocks.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
I've added at the end of the theme file I get this error
Cannot redeclare themecenterbox() (previously declared in /customers/gorgondo.com/gorgondo.com/httpd.www/mainfile.php:935)
well mainfile is a petty big file and it looks like I need to edit more then line 935-941
Code:
function themecenterbox($title, $content) {
OpenTable();
echo "<center><font class=\"option\">$title</font></center>
"
."$content";
CloseTable();
echo "
";
}
hope some of you experts know what to do

it would be a great help to me and others(I think)