Hi there.
I was wondering if it was possible to disable the top level navigation and have the secondary and tertiary clickable. On this site I want (about, events, members, support, mentorship) NOT Clickable.
http://new.docbc.org
Thanks
Hi there.
I was wondering if it was possible to disable the top level navigation and have the secondary and tertiary clickable. On this site I want (about, events, members, support, mentorship) NOT Clickable.
http://new.docbc.org
Thanks
I've used that before and what I want to do rather than redirect the page I want to disable the link altogther so that it's purpose is to just show the dropdown.
well, removing the links will cause several problems, but the link can be disabled with jQuery like this:
<script>jQuery(function($){
$('ul.navigation > li > a.sf-with-ul').addClass('disabledlink').click(function(e) { e.preventDefault(); });
});
</script>
Add this to footer.php (before the closing body tag). This makes the top parent link unclickable, and a disabledlink class is added so that it can be styled to look like it's not a link.
THANKS!
You must log in to post.