In the style.css set the z-index from 9999 to #header .row and this should do it.
Currently it is:
 #header .row { position: relative; overflow: visible; } 
This works for me in Chrome 19 if you change it to:
 #header .row { position: relative; overflow: visible; z-index: 99999; } 
That should do the trick! :)
 source share