2013-01-28, 00:38:24
(2013-01-27, 22:15:42)pacchiee Wrote: Am unable to get the drop down menu working using i18n navigation plugin. The child menus are shown always but I wanted it to be shown on hover.
For unknown reasons am unable to visit the site http://mvlcek.bplaced.net for documentation. Wonder if am missing the necessary css?? Using default Cardinal theme.
Yes, you have to create the appropriate CSS rules yourself in your style sheet.
Assuming you include the navigation like this:
Code:
<div class="sitemenu">
<ul><?php get_i18n_navigation(return_page_slug(),0,1,I18N_SHOW_MENU); ?></ul>
</div>
Code:
.sitemenu { position:relative; height: 1.4em; }
.sitemenu ul { position:absolute; list-style: none; }
.sitemenu li { float:left; }
.sitemenu li ul { display:none; }
.sitemenu li:hover ul { display:block; }
.sitemenu li.current > a { font-weight:800; }
.sitemenu li.currentpath > a { font-weight:800; }