Need CSS/HTML help fixing navigation in IE
Just launched a new Wordpress site, and for some reason that I can't figure out, the navigation is pushed way to the right and then rolls onto the next line, but only in IE.
I only have access to IE 11 on Windows 7, so I can't be sure if it's doing the same thing in other versions. But it looks fine in Chrome, Safari and FireFox on both Windows and Mac. The theme is highly responsive and it also works fine on my iPhone.
Anyway, here's the site:
http://www.all-about-wolves.com
And here's the main .css file:
http://www.all-about-wolves.com/wp-content/themes/TheHunter/style.css
Any ideas? Virtual beer for whoever can point to a solution!!!
Solutions
You need to clear your
float left
(or both) on the
<div class="clearfix">
that wraps your menu.
Notice that in IE the menu starts where the
site logo
ends.
To fix this, edit your css and make sure the 'clearfix' will works properly on all browsers.
.clearfix {
clear: both;
}
Similar questions
Is it possible to disable html code error auto fixing feature by wordpress 4.9.1?
I'm on Wordpress 4.9.1 and there's this new feature that detects HTML error and auto fixes the errors when updating the page. Is it possible to disable this feature? The error is false positive since it's still working as intended. Note : - I'm the super admin and HTML errors seems to not be auto fixed for me. The fix only applies for admins/editor...
CSS - Fixing Style Typo Breaks Website
Looking for a little CSS Help. I am working on a wordpress website for some friends. I was putting the child theme CSS together, and when making a floating box for a logo for IE/Safari compatability, I found a typo that will break my site if I fix it. In the CSS I have: This is code left behind by the last guy, and if I pull this extra closing brac...
Fixing render blocking CSS on WP
Hello I am trying to fix render blocking CSS recommendation from Google Page speed. I use Autoptimize for this purpose, so I inserted critical path and checked defer CSS. However Google doesn't count this as a fixed recommendation. From this code part, is there any issues that causing it, or it something else? Any hints on how to troubleshoot this...
Also ask