1

If you click the SERVICES link under the logo the menu will expand a little too far and then in one quick flash, it cuts back to the desired height. Any way to cure this bug?

$(document).ready(function() {
  $("li#service-toggle-link").click(function () {
    $(".toggle-content").slideToggle("slow");
  });
});
Tomelower
  • 475
  • 3
  • 8
  • 17
Corey Tegeler
  • 149
  • 1
  • 13

2 Answers2

0

It works fine in FF when you set the height of div.toggle-content (for example for 176px)

I dunno why, maybe FF has some issues with autoheight

Bart Az.
  • 1,644
  • 1
  • 22
  • 32
0

Your <nav id="site-navigation"> seems to have an unnecessary display: table. Try removing it and everything should work fine.

Tables are not meant to be animated with jQuery, you can read more here: https://stackoverflow.com/a/920480/1446845

Community
  • 1
  • 1
Aurelio
  • 24,702
  • 9
  • 60
  • 63