Hello,
I've got a site here: http://www.wals.lib.wi.us/drupal/
(I'm using a modified version of the multiflex theme)
If you look at the menus on the right, the lists are pushed to the left,
so the bullets are chopped in half. (looks ok in IE) viewing the source,
I noticed that menus I create don't get wrapped in <ul></ul>
. Rather,
they're stranded <li>
's.
Using the standard Bluemarine template, it works fine. So, that leads me
to believe it's a problem with my template. From what I can tell, that
would be defined in block.tpl.php, right? If it is, does this look ok?
// Content region needs different wrapper divs
if ($block->region =='content') {
echo $layoutcode -container line-box">
echo $layoutcode -container-1col">
print $block->subject
print ($block->content)
}
// Test to see if the main menu is being output. If so,
// use a special class to format it properly
elseif ($block->module == 'user' and $block->delta == '1') {
} else
// normal sidebar
{
$colours = array("grey","grey","grey","grey");
$colour=$colours[$block_id % 4];
// a bit of a fudge, but it will do for now.
print $colour 07">
print "$block->subject";