Depending on what you want add in one of 2 places in the sidebox/tpl_information.php file as noted:
Code:
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
$content .= "\n" . '<ul style="margin: 0; padding: 0; list-style-type: none;">' . "\n";
for ($i=0; $i<sizeof($information); $i++) {
$content .= '<li>' . $information[$i] . '</li>' . "\n";
}
Here as an addition li
$content .= '</ul>' . "\n";
Or here as an src
$content .= '</div>';
?>