It looks like you are trying to add a new box
You should create the new box, by say for example copy the information.php and save it as for example newbox.php
Then go into column_left.php or column_right.php depending on which side you want to put it on and insert the following code:
Code:
include(DIR_WS_BOXES . 'newbox.php');
afterwards you can change the newbox.php to whatever you like.
It will create the top of the box for you. This is done through a class and the information is passed on to the class from the following line:
Code:
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);
new infoBoxHeading($info_box_contents, false, false);
Hope this helps you.
Bookmarks