I have dug up an old post which maybe helpful to me:
viewtopic.php?f=10&t=9232
Basically, I have the same issue as captaindav had. Given the limited knowledge in html, css and php, there is a key element that is still unclear to me.
My goal is to use the existing horizontal menu bar that came with the blog theme (see Green-bug-10 Word Press theme
http://themes.wordpress.net/columns/2-c ... en-bug-10/). Using the Milonic menu as its sub-menus. How is Milonic Main menu Name being supressed by web default menu item? My image menuback.gif is just a thin vertical line for the menu bar is defined in Style.css as follows:
#menu
{
background: #5D7311 url(images/menuback.gif) repeat-x;
color: #DDD;
height: 35px;
}
Here is what have partially extracted code from Header.php. The Milonic sub-menu appears, but here are the problems:
1. the vertical line - menuback.gif is stuck out on the default main menu bar.
2. No main menu item or menuback.gif insight in Internet Explorer 7.
How do I solve this problem? Thanks. Here is the code extracted from Header.php:
--------------------------------------------
<img src="/images/menuback.gif" border="" name="menuback" id="menuback">
<TD><ul><li><a href="#" onmouseover="popup('Page3','menuback')" onmouseout="popdown()"><font size="" color="">Page3</font></a>
<!-- Milonic Popup Menus -->
<script>
with(milonic=new menuname("Main Menu")){
style=menuStyle;
alwaysvisible=1;
position="relative";
<!-- aI("text=Page3;showmenu=Page3;"); -->
}
drawMenus();
</script>
</a></li></ul></TD>
--------------------------------------------
Thanks.