your plugin does not display dropdown menus in my sidebar. i only get my unordered page-list. any guesses as to why? seems to be an issue with my theme, but i don’t know what. these menus don’t work when i embed them in pages, either.
Hi,
I think you are missing wp_head from between your HEAD tags.
Add <?php wp_head(); ?> before the <body> tag in your theme like this and it should start working correctly:
[code:1ll7qlz4]<?php wp_head(); ?>
<body>[/code:1ll7qlz4]
You may still have problems once you’ve done this as sidebars tend to have CSS which interferes with the menu. Just post back here if this turns out to be a problem.