• I really hope someone can help as I have a problem across multiple sites; basically the nav menu is not displaying in Internet Explorer! The menu displays fine in Safari, Firefox and Opera (even with Opera set to Mask as IE!)

    My development site is https://www.notjustageek.co.uk

    I have been through a series of debugging exercises and I have identified that this is something to do with my custom theme. I am inheriting the TwentyEleven theme and then adding small customisation to the format but particularly am modifying the format for smaller devices (such as iPad and iPhone). If I revert the theme back to the standard TwentyEleven theme the menu appears correctly under the top image.

    The site is currently configured with my custom theme so people can also see the problem.

    Any help with identifying the problem would be much appreciated as like I said this issue exists on a couple of my other sites too! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Copy your following code and paste it outside of device width specific style block under your stylesheet ( Under Stylesheet Header section ):

    #access,#access li{
    float:none!important;
    clear:both!important;
    margin:0 0 5px 0!important;
    display:block;
    padding:0;
    text-align:left!important;
    width:100%;
    }
    #access{
    border:1px solid #ccc;
    padding:0px;
    -webkit-border-radius:5px;
    }

    #access li{
    margin:0!important;
    }

    #access li a{
    display:block;
    }

    On line 93 you are ending a comment with --!>

    That is blocking out the nav code that follows.

    It should be -->

    Thread Starter jdpuddy

    (@jdpuddy)

    @kmessinger

    thank you so much, found a couple of instances where that extra exclamation mark had made it in and now fully functional, thanks!

    guess it’s a case of couldn’t see the comments for the code!

    Any ideas why this was only affecting IE browsers and not Safari, Firefox or Opera?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘HELP! Nav Menu Not Loading in IE’ is closed to new replies.