• Closed
  • Brady Smith
    Spectator
    March 27, 2014 at 10:48 pm #8321

    site: http://www.nbainc.com/annuities

    Using evolve 2.8.8 and everything looks perfect on Chrome, IE8, and IE11 browsers. When I roll-back IE11 to IE10 on Win7, my home computer shows the menus perfectly. As soon as I have someone at work test the site, they report the menu doesn’t fully show. 5 users at my office, all with essentially the same setup (IE10 on Win7), report the same thing.

    Here’s an example of what they see:
    http://nbainc.info/annuities/?attachment_id=476

    Brady Smith
    Spectator
    Posts: 8
    April 4, 2014 at 10:43 pm #9409

    Yes. Viewing the demo site in IE 10 Compatibility View mode shows the menus “hidden” behind the images of the parallax or behind a thick gray element. Here are some screenshots:
    http://nbainc.info/annuities/wp-content/uploads/2014/04/Capture.png
    http://nbainc.info/annuities/wp-content/uploads/2014/04/Capture2.png

    Roman
    Spectator
    Posts: 3147
    April 5, 2014 at 1:50 pm #9412

    I found the bug, please edit the style.css file, find line #433 and remove it:

    Code:
    position:relative;

    it will fix the bug, this will be fixed in the next theme release also.

    Brady Smith
    Spectator
    Posts: 8
    April 7, 2014 at 5:44 pm #9420

    My CSS editor doesn’t show the same line numbers as you, so I remmed out all “position:relative;” references between the /* Menu */ and /* Menu bugfix */ lines. This solved the problem, though a little quirky. I ended up putting each one back in until I found that the problem is solved by only remming the one at my line 425, which can be seen here:

    Code:
    Line 424 text-shadow: 0 1px 0 #FFFFFF;
    Line 425 /* position:relative; */
    Line 426 float:left;display:block;width:100%;

    Again, the problem is solved, but it isn’t the optimal solution.
    Thanks.

    Roman
    Spectator
    Posts: 3147
    April 7, 2014 at 8:11 pm #9421

    the problem was in the .menu-header css rule so it seems you removed the right one 🙂

    Brady Smith
    Spectator
    Posts: 8
    April 7, 2014 at 9:11 pm #9422

    Great. Thanks for the help.