If you want to simply remove that colon then the chunk of code (in tpl_ezpages_bar_footer) that you are concerned with looks like this:
Code:
<?php echo ($i <= $n ? EZPAGES_SEPARATOR_FOOTER : '') . "\n"; ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
You could try changing it to:
Code:
<?php echo (($i <= $n && $i!=1) ? EZPAGES_SEPARATOR_FOOTER : '') . "\n"; ?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
Haven't tested that but give it a go.
OR:
Code:
<?php
if ($i==1){
}
elseif ($i==4){
echo '<br/>';
}
else{
echo EZPAGES_SEPARATOR_FOOTER;
}
?>
<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
And that should break the row after four entries. Again not tested but give it a go.