I think your best bet would be to do something like the information sidebox:
in includes/modules/sideboxes/YOUR_template/links_box.php
put something like:
$links[] = <a href="http://babygiftbasketsplace.com/store/birth-announcements.htm">' . BOX_INFORMATION_LINKS_CATEGORY1 . '</a>';
Do this for each of your pages
------------
Then in includes/templates/YOUR_TEMPLATE/sideboxes/tpl_links_select.php
You'd have to alter/edit it so you'd have something like
$content .= "\n" . '<ul
style="margin: 0; padding: 0; list-style-type: none;">' . "\n";
for ($i=0; $i<sizeof($links); $i++) {
$content .= '<li>' . $links[$i] . '</li>' . "\n";
}
$content .= '</ul>' . "\n";
You'll lose the scrollbox however.
----------
Dang, I was hoping to keep the scrollbox. I can do it otherwise, just wanted the nice effect

Bookmarks