Using V1.3.9b
Current with all updates.
I'm just trying to figure out how to add lind separators between each item in my "EZ PAGE SIDEBOX"
I read what was listed here, and tried to apply that fix to my "tpl_ezpages.php", but it wouldn't work. I could only get lines at the beginning of the box and at the end, but not between each ezpage????
You can see what I mean by looking at the page here:
www.celebrityapparel.net
This is my ezpage code:
/* $content .= '</ul>' . "\n";*/
$content = '<hr id="catBoxDivider" />';
$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=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
$content .= '<li><a href="' . $var_linksList[$i]['link'] . '">' . $var_linksList[$i]['name'] . '</a></li>' . "\n" ;
} // end FOR loop
$content .= '<hr id="catBoxDivider" />' . "\n";
$content .= '</div>';
?>
Thanks