i have the latest version, i downloaded today:(pls check my post date). The menu bar is missing!
So i dug into the code to see if the bar is going missing or its css-bug. i seem to have figured something, another plugin called wp-insert was causing this. the css file in the plugin has a margin and width property which clashed with the theme. please fix this
what i want to do is:
-show a small arrow for those menu items that has sub menus (pages)
-for this i need an additional class to be added by wordpress whenever there is a subpage
ninenote thanks for this solution!.
I was hoping can you help me in a adding a class “dropdown” to all those list item has subpages below them
eg.
<ul>
<li class="page_item page-item-2"><a href="#">main 1</a></li>
<li class="dropdown page_item page-item-4"><ahref="#">main 2</a>
<ul class="children">
<li class="page_item page-item-6"><a href="#">Sub 1</a></li>
<li class="page_item page-item-9"><a href="#">Sub 2</a></li>
</ul>
</li>
</ul>
please help