Hello Jade
Thanks for getting back to me. I could only find the file you referenced in /www/includes/templates/template_default/sideboxes (not in /www/includes/templates/apple_zen/sideboxes)
and I wasn't sure what I was supposed to be doing with the content. Am I looking in the right place?
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";
}
$content .= '</ul>' . "\n";
$content .= '</div>';
Bookmarks