OK...answer found!
File Location: includes/YOURTEMPLATE/sidebox/tpl_information.php
Go to line (near or around) 14.
Find this section of code:
Code:
for ($i=0; $i<5; $i++) {
$content .='<li>'.preg_replace('/^([^>]+>)/i', '$1', $information[$i]) . '</li>' . "\n";
}
Notice the "5"? That is the max number of links the Information Box will display. You can modify that number to what you want.
For example, I changed mine from "5" to "30":
Code:
for ($i=0; $i<30; $i++) {
$content .='<li>'.preg_replace('/^([^>]+>)/i', '$1', $information[$i]) . '</li>' . "\n";
}
Notice the "30"? I won't be using 30 links but I would like to see what this Information Sidebox will look like if I have lets say 15 links displayed. At that time I may think it looks ugly and then decide to utilize the More Information Sidebox.
This fix just gives a bit more control in your display as you tweak the cosmetic portion of your site.
I hope this helps you all.