Your view source is showing the ez-page <ul> list structures, but no list items. Do you have any that should currently be showing? If not, please add some so I can verify the effects. If you have some links that should be showing and are not, that would be up to your implementation of the ezp mod.
It looks as if it should be simple to add a class to the link code in tpl_categories.php; it would be simpler yet to delete the hard-coded styling in tpl_categories and style the <li> elements in your stylesheet.
PHP Code:
// integrate ezpages
$content .= "\n" . '<ul style="margin: 0; padding: 0; list-style-type: none;">' . "\n";
becomes
PHP Code:
// integrate ezpages
$content .= "\n" . '<ul>' . "\n";
Add to your stylesheet
Code:
#categories ul {
margin: 0;
padding: 0;
list-style: disc inside url(../images/bullet1.gif);
}
Bookmarks