I installed the module "cateories with ez pages links" to your template. I have everything working. The only problem is I can't seem to get the module to match with the current category layout within the sidebox.
Following is what was added to the includes/templates/andover_modern/sideboxes/tpl_catergories.php
/ integrate ezpages
$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 .= '</ul>' . "\n";
//end integrate ezpages
// integrate ezpges TOC
$content .= "\n" . '<ul style="margin: 0; padding: 0; list-style-type: none;">' . "\n" ;
for ($i=0; $i<sizeof($ez_pages_toc); $i++) {
$content .= '<li>' . $ez_pages_toc[$i] . '</li>' . "\n" ;
}
$content .= '</ul>' . "\n" ;
// end integrate ezpages TOC
The above was placed after line 73
$content .= '</a></div>';
}
}
I tried a number of different things and have come close, but can't seem to figure it out.
What am I missing?