2011-09-20, 07:40:05
@mvlcek thank you, that made the trick.
I have another question.
what can i do to show the top menu title or father on all childs page?
this is my menu.
This is my Sub-Menu
How can i show the top level menu title on my sidebarheading ?
for example
Services
-service1
-service2
-service3
And how do i Hide the submenu completely if there is no childs?
thank you!
I have another question.
what can i do to show the top menu title or father on all childs page?
this is my menu.
Code:
<div id="myslidemenu" class="jqueryslidemenu">
<ul>
<?php get_i18n_navigation(return_page_slug()); ?>
</ul>
</div>
This is my Sub-Menu
Code:
<div class="sidebarcontent">
<h4 class="sidebarheading">SERVICES</h4>
<ul class="sidelist">
<?php get_i18n_navigation(return_page_slug(),1,99); ?>
</ul>
</div>
How can i show the top level menu title on my sidebarheading ?
for example
Services
-service1
-service2
-service3
And how do i Hide the submenu completely if there is no childs?
thank you!