To change the layout of the boxes in the config page itself, you will need to change them in the database.
Appending the pagebar to the menu bar is acutally quite simple.
- Open pages/rostercp.php
Starting line 155, replace
- Code: Select all
echo
$header . "\n".
'<table width="100%"><tr>' . "\n".
'<td valign="top" align="left" width="15%">' . "\n".
$menu . "</td>\n".
'<td valign="top" align="center" width="70%">' . "\n".
$body . "</td>\n".
'<td valign="top" align="right" width="15%">' . "\n".
$pagebar . "</td>\n".
"</tr></table>\n".
$footer;
With, for example
- Code: Select all
echo
$header . "\n".
'<table width="100%"><tr>' . "\n".
'<td valign="top" align="left" width="15%">' . "\n".
$menu . $pagebar . "</td>\n".
'<td valign="top" align="center" width="70%">' . "\n".
$body . "</td>\n".
"</tr></table>\n".
$footer;
You may need to play with it a bit to get it right. Also note the code may have changed recently, and I'm behind in SVN a couple of days.