Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
how did you get the rollover to work in the first place? Did you code it yourself or copy and paste script online?
It works on every other browser in IT. And no, it came with the template 2012. The default wordpress temp.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@fatty123, the OP is using the Twenty Twelve theme.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Which version of IE is the issue occur in?
You have this
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40408145-3', 'minvera.com'); ga('send', 'pageview');
</script>
in your source code before the DOCTYPE and that is why ie is messing up. Nothing can come before DOCTYPE.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you don’t know where that code came from then try deactivating plugins to explore whether any could be responsible.
@kmessinger is right, outside the body tag, try placing it within the body tag.
I also notice because of the script tag, your doctype declaration disappear in chrome although it stills display fine….and IE definitely can’t read that….
In your css I see that ur navigation is using display:inline-block for all its alignment and doctype declaration is crucial over here….