Closed voviklenin closed 11 years ago
What version(s) of IE?
~~Actually I get same problem if i just resize the browser-window in chrome (29.0.1547.65) + safari (Version 6.0.5 (8536.30.1)). Even on getbootstrap.com. To replicate problem:
@poromaa That's #9774. @voviklenin's issue sounds different.
@voviklenin: Also, could you post a JSFiddle or JSBin live example of the problem?
The Version of Explorer is 10, I will try to post it on JSFiddle but within next week or so, little bit busy with the project.
Forgot to mension that I am using wordpress with wp-bootstrap-navwalker.
It also creates a glitch in mobile button slider, the submenu does drop down but not in smaller window on the left like in standard menu.
Well, we can't help with the WordPress-specific parts, but if you can create the plain JSFiddle example, then we can certainly debug that.
Here is an example.
<div class="row">
<div class="col-md-12 rempd">
<nav class="navbar navbar-default navbar-turquoise" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<?php
wp_nav_menu( array(
'menu' => 'nav_main',
'theme_location' => 'nav_main',
'depth' => 2,
'container' => false,
'menu_class' => 'nav nav-justified',
'fallback_cb' => 'wp_page_menu',
'walker' => new wp_bootstrap_navwalker())
);
?>
</div><!-- /.navbar-collapse -->
</nav>
</div>
</div>
This is the way it was implemented. I am not sure wether the plugin bootstrap_navwalker was created by same people as the bootstrap itself.
@voviklenin As a member of the Bootstrap core team, I can tell you that it wasn't. We don't write any plugins for third-party stuff like WordPress.
http://jsfiddle.net/voviklenin/hKq5t/
It does cause trouble even if I hardwire and create the justified menu as per tutorial, has the same issue as through the plugin
Hi, first, sry for my english.
I have the exact same issue here... I think the problem is not with bootstrap nor the menu waker (http://illuminatikarate.com/blog/bootstrap-walker-for-wordpress/)... before the menu there are diferences in the way wp-bootstrap code the header... check this... http://www.diffchecker.com/a1ocvp87 in that way, wp-bootstrap is not ready for nav-justified
im gona give a try on this...
Judging by our Justified Nav example page, I don't think we support using .justified-nav
on the navbar.
if you use the code inspector to replace .navbar-nav with .justified-nav in the de ul menu to the bootstrap page it seems to work fine, even in iE8 (but I dont know alrredy if its collapsing right)
We don't support the .justified-nav
class within navbars at this time.
There is a problem with nav-justified when opening it in IE, the dropdown item falls 1 line lower than the rest of menu items. Works fine on mozilla and chrome.